| 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 20 matching lines...) Expand all Loading... |
| 31 }], | 31 }], |
| 32 ['OS=="win" and component=="shared_library"', { | 32 ['OS=="win" and component=="shared_library"', { |
| 33 'variables': { | 33 'variables': { |
| 34 'files': [ | 34 'files': [ |
| 35 '<(PRODUCT_DIR)/icui18n.dll', | 35 '<(PRODUCT_DIR)/icui18n.dll', |
| 36 '<(PRODUCT_DIR)/icuuc.dll', | 36 '<(PRODUCT_DIR)/icuuc.dll', |
| 37 '<(PRODUCT_DIR)/v8.dll', | 37 '<(PRODUCT_DIR)/v8.dll', |
| 38 ], | 38 ], |
| 39 }, | 39 }, |
| 40 }], | 40 }], |
| 41 ['OS=="mac" and asan==1', { |
| 42 'variables': { |
| 43 'files': [ |
| 44 '<(PRODUCT_DIR)/libclang_rt.asan_osx_dynamic.dylib', |
| 45 ], |
| 46 }, |
| 47 }], |
| 41 ['tsan==1', { | 48 ['tsan==1', { |
| 42 'variables': { | 49 'variables': { |
| 43 'files': [ | 50 'files': [ |
| 44 '../tools/sanitizers/tsan_suppressions.txt', | 51 '../tools/sanitizers/tsan_suppressions.txt', |
| 45 ], | 52 ], |
| 46 }, | 53 }, |
| 47 }], | 54 }], |
| 48 ['OS=="linux" and (asan==1 or cfi_vptr==1 or msan==1 or tsan==1)', { | 55 ['OS=="linux" and (asan==1 or cfi_vptr==1 or msan==1 or tsan==1)', { |
| 49 'variables': { | 56 'variables': { |
| 50 'files': [ | 57 'files': [ |
| 51 # For llvm-symbolizer. | 58 # For llvm-symbolizer. |
| 52 '../third_party/llvm-build/Release+Asserts/lib/libstdc++.so.6', | 59 '../third_party/llvm-build/Release+Asserts/lib/libstdc++.so.6', |
| 53 ], | 60 ], |
| 54 }, | 61 }, |
| 55 }], | 62 }], |
| 56 ['asan==1 or cfi_vptr==1 or msan==1 or tsan==1', { | 63 ['asan==1 or cfi_vptr==1 or msan==1 or tsan==1', { |
| 57 'variables': { | 64 'variables': { |
| 58 'files': [ | 65 'files': [ |
| 59 '../third_party/llvm-build/Release+Asserts/bin/llvm-symbolizer<(EXECUT
ABLE_SUFFIX)', | 66 '../third_party/llvm-build/Release+Asserts/bin/llvm-symbolizer<(EXECUT
ABLE_SUFFIX)', |
| 60 ], | 67 ], |
| 61 }, | 68 }, |
| 62 }], | 69 }], |
| 63 # Workaround for https://code.google.com/p/swarming/issues/detail?id=211 | 70 # Workaround for https://code.google.com/p/swarming/issues/detail?id=211 |
| 64 ['asan==0 or cfi_vptr==0 or msan==0 or tsan==0', { | 71 ['asan==0 or cfi_vptr==0 or msan==0 or tsan==0', { |
| 65 'variables': {}, | 72 'variables': {}, |
| 66 }], | 73 }], |
| 67 ], | 74 ], |
| 68 } | 75 } |
| OLD | NEW |