| OLD | NEW |
| 1 # Copyright 2015 the V8 project authors. All rights reserved. | 1 # Copyright 2015 the V8 project authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 { | 4 { |
| 5 'includes': [ | 5 'includes': [ |
| 6 '../third_party/icu/icu.isolate', | 6 '../third_party/icu/icu.isolate', |
| 7 '../gypfiles/config/win/msvs_dependencies.isolate', | 7 '../gypfiles/config/win/msvs_dependencies.isolate', |
| 8 ], | 8 ], |
| 9 'conditions': [ | 9 'conditions': [ |
| 10 ['use_custom_libcxx==1', { | 10 ['use_custom_libcxx==1', { |
| 11 'variables': { | 11 'variables': { |
| 12 'files': [ | 12 'files': [ |
| 13 '<(PRODUCT_DIR)/lib/libc++.so', | 13 '<(PRODUCT_DIR)/lib/libc++.so', |
| 14 ], | 14 ], |
| 15 }, | 15 }, |
| 16 }], | 16 }], |
| 17 ['v8_use_snapshot=="true" and v8_use_external_startup_data==1', { | 17 ['v8_use_snapshot=="true" and v8_use_external_startup_data==1', { |
| 18 'variables': { | 18 'variables': { |
| 19 'files': [ | 19 'files': [ |
| 20 '<(PRODUCT_DIR)/natives_blob.bin', | 20 '<(PRODUCT_DIR)/natives_blob.bin', |
| 21 '<(PRODUCT_DIR)/snapshot_blob.bin', | 21 '<(PRODUCT_DIR)/snapshot_blob.bin', |
| 22 ], | 22 ], |
| 23 }, | 23 }, |
| 24 }], | 24 }], |
| 25 ['OS=="linux" and component=="shared_library" and target_arch=="ia32"', { | |
| 26 'variables': { | |
| 27 'files': [ | |
| 28 '<(PRODUCT_DIR)/lib/', | |
| 29 ], | |
| 30 }, | |
| 31 }], | |
| 32 ['OS=="win" and component=="shared_library"', { | |
| 33 'variables': { | |
| 34 'files': [ | |
| 35 '<(PRODUCT_DIR)/icui18n.dll', | |
| 36 '<(PRODUCT_DIR)/icuuc.dll', | |
| 37 '<(PRODUCT_DIR)/v8.dll', | |
| 38 ], | |
| 39 }, | |
| 40 }], | |
| 41 ['OS=="mac" and asan==1', { | 25 ['OS=="mac" and asan==1', { |
| 42 'variables': { | 26 'variables': { |
| 43 'files': [ | 27 'files': [ |
| 44 '<(PRODUCT_DIR)/libclang_rt.asan_osx_dynamic.dylib', | 28 '<(PRODUCT_DIR)/libclang_rt.asan_osx_dynamic.dylib', |
| 45 ], | 29 ], |
| 46 }, | 30 }, |
| 47 }], | 31 }], |
| 48 ['tsan==1', { | 32 ['tsan==1', { |
| 49 'variables': { | 33 'variables': { |
| 50 'files': [ | 34 'files': [ |
| (...skipping 15 matching lines...) Expand all Loading... |
| 66 '../third_party/llvm-build/Release+Asserts/bin/llvm-symbolizer<(EXECUT
ABLE_SUFFIX)', | 50 '../third_party/llvm-build/Release+Asserts/bin/llvm-symbolizer<(EXECUT
ABLE_SUFFIX)', |
| 67 ], | 51 ], |
| 68 }, | 52 }, |
| 69 }], | 53 }], |
| 70 # Workaround for https://code.google.com/p/swarming/issues/detail?id=211 | 54 # Workaround for https://code.google.com/p/swarming/issues/detail?id=211 |
| 71 ['asan==0 or cfi_vptr==0 or msan==0 or tsan==0', { | 55 ['asan==0 or cfi_vptr==0 or msan==0 or tsan==0', { |
| 72 'variables': {}, | 56 'variables': {}, |
| 73 }], | 57 }], |
| 74 ], | 58 ], |
| 75 } | 59 } |
| OLD | NEW |