base.isolate 1.81 KB
Newer Older
1 2 3 4
# Copyright 2015 the V8 project authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
{
5 6 7 8
  'includes': [
    '../third_party/icu/icu.isolate',
    '../build/config/win/msvs_dependencies.isolate',
  ],
9
  'conditions': [
10 11 12 13 14 15 16
    ['use_custom_libcxx==1', {
      'variables': {
        'files': [
          '<(PRODUCT_DIR)/lib/libc++.so',
        ],
      },
    }],
17
    ['v8_use_snapshot=="true" and v8_use_external_startup_data==1', {
18 19 20 21 22 23 24
      'variables': {
        'files': [
          '<(PRODUCT_DIR)/natives_blob.bin',
          '<(PRODUCT_DIR)/snapshot_blob.bin',
        ],
      },
    }],
25 26 27 28 29 30 31
    ['OS=="linux" and component=="shared_library" and target_arch=="ia32"', {
      'variables': {
        'files': [
          '<(PRODUCT_DIR)/lib/',
        ],
      },
    }],
32 33 34 35 36 37 38 39 40
    ['OS=="win" and component=="shared_library"', {
      'variables': {
        'files': [
          '<(PRODUCT_DIR)/icui18n.dll',
          '<(PRODUCT_DIR)/icuuc.dll',
          '<(PRODUCT_DIR)/v8.dll',
        ],
      },
    }],
41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66
    ['tsan==1', {
      'variables': {
        'files': [
          '../tools/sanitizers/tsan_suppressions.txt',
        ],
      },
    }],
    ['OS=="linux" and (asan==1 or cfi_vptr==1 or msan==1 or tsan==1)', {
      'variables': {
        'files': [
          # For llvm-symbolizer.
          '../third_party/llvm-build/Release+Asserts/lib/libstdc++.so.6',
        ],
      },
    }],
    ['asan==1 or cfi_vptr==1 or msan==1 or tsan==1', {
      'variables': {
        'files': [
          '../third_party/llvm-build/Release+Asserts/bin/llvm-symbolizer<(EXECUTABLE_SUFFIX)',
        ],
      },
    }],
    # Workaround for https://code.google.com/p/swarming/issues/detail?id=211
    ['asan==0 or cfi_vptr==0 or msan==0 or tsan==0', {
      'variables': {},
    }],
67 68
  ],
}