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 | |
8 # MSVS runtime libraries. | |
9 '../gypfiles/win/msvs_dependencies.isolate', | |
10 ], | 7 ], |
11 'conditions': [ | 8 'conditions': [ |
12 ['v8_use_snapshot=="true" and v8_use_external_startup_data==1', { | 9 ['v8_use_snapshot=="true" and v8_use_external_startup_data==1', { |
13 'variables': { | 10 'variables': { |
14 'files': [ | 11 'files': [ |
15 '<(PRODUCT_DIR)/natives_blob.bin', | 12 '<(PRODUCT_DIR)/natives_blob.bin', |
16 '<(PRODUCT_DIR)/snapshot_blob.bin', | 13 '<(PRODUCT_DIR)/snapshot_blob.bin', |
17 ], | 14 ], |
18 }, | 15 }, |
19 }], | 16 }], |
(...skipping 18 matching lines...) Expand all Loading... |
38 '../third_party/llvm-build/Release+Asserts/bin/llvm-symbolizer<(EXECUT
ABLE_SUFFIX)', | 35 '../third_party/llvm-build/Release+Asserts/bin/llvm-symbolizer<(EXECUT
ABLE_SUFFIX)', |
39 ], | 36 ], |
40 }, | 37 }, |
41 }], | 38 }], |
42 # Workaround for https://code.google.com/p/swarming/issues/detail?id=211 | 39 # Workaround for https://code.google.com/p/swarming/issues/detail?id=211 |
43 ['asan==0 or cfi_vptr==0 or msan==0 or tsan==0', { | 40 ['asan==0 or cfi_vptr==0 or msan==0 or tsan==0', { |
44 'variables': {}, | 41 'variables': {}, |
45 }], | 42 }], |
46 ], | 43 ], |
47 } | 44 } |
OLD | NEW |