| 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 '../build/config/win/msvs_dependencies.isolate', | 7 '../build/config/win/msvs_dependencies.isolate', |
| 8 ], | 8 ], |
| 9 'conditions': [ | 9 'conditions': [ |
| 10 ['use_custom_libcxx==1', { | 10 ['use_custom_libcxx==1', { |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 ], | 22 ], |
| 23 }, | 23 }, |
| 24 }], | 24 }], |
| 25 ['OS=="linux" and component=="shared_library" and target_arch=="ia32"', { | 25 ['OS=="linux" and component=="shared_library" and target_arch=="ia32"', { |
| 26 'variables': { | 26 'variables': { |
| 27 'files': [ | 27 'files': [ |
| 28 '<(PRODUCT_DIR)/lib/', | 28 '<(PRODUCT_DIR)/lib/', |
| 29 ], | 29 ], |
| 30 }, | 30 }, |
| 31 }], | 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 }], |
| 32 ['tsan==1', { | 41 ['tsan==1', { |
| 33 'variables': { | 42 'variables': { |
| 34 'files': [ | 43 'files': [ |
| 35 '../tools/sanitizers/tsan_suppressions.txt', | 44 '../tools/sanitizers/tsan_suppressions.txt', |
| 36 ], | 45 ], |
| 37 }, | 46 }, |
| 38 }], | 47 }], |
| 39 ['OS=="linux" and (asan==1 or cfi_vptr==1 or msan==1 or tsan==1)', { | 48 ['OS=="linux" and (asan==1 or cfi_vptr==1 or msan==1 or tsan==1)', { |
| 40 'variables': { | 49 'variables': { |
| 41 'files': [ | 50 'files': [ |
| 42 # For llvm-symbolizer. | 51 # For llvm-symbolizer. |
| 43 '../third_party/llvm-build/Release+Asserts/lib/libstdc++.so.6', | 52 '../third_party/llvm-build/Release+Asserts/lib/libstdc++.so.6', |
| 44 ], | 53 ], |
| 45 }, | 54 }, |
| 46 }], | 55 }], |
| 47 ['asan==1 or cfi_vptr==1 or msan==1 or tsan==1', { | 56 ['asan==1 or cfi_vptr==1 or msan==1 or tsan==1', { |
| 48 'variables': { | 57 'variables': { |
| 49 'files': [ | 58 'files': [ |
| 50 '../third_party/llvm-build/Release+Asserts/bin/llvm-symbolizer<(EXECUT
ABLE_SUFFIX)', | 59 '../third_party/llvm-build/Release+Asserts/bin/llvm-symbolizer<(EXECUT
ABLE_SUFFIX)', |
| 51 ], | 60 ], |
| 52 }, | 61 }, |
| 53 }], | 62 }], |
| 54 # Workaround for https://code.google.com/p/swarming/issues/detail?id=211 | 63 # Workaround for https://code.google.com/p/swarming/issues/detail?id=211 |
| 55 ['asan==0 or cfi_vptr==0 or msan==0 or tsan==0', { | 64 ['asan==0 or cfi_vptr==0 or msan==0 or tsan==0', { |
| 56 'variables': {}, | 65 'variables': {}, |
| 57 }], | 66 }], |
| 58 ], | 67 ], |
| 59 } | 68 } |
| OLD | NEW |