OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 The Chromium 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 # While the target 'base' doesn't depend on ../third_party/icu/icu.gyp | 6 # While the target 'base' doesn't depend on ../third_party/icu/icu.gyp |
7 # itself, virtually all targets using it has to include icu. The only | 7 # itself, virtually all targets using it has to include icu. The only |
8 # exception is the Windows sandbox (?). | 8 # exception is the Windows sandbox (?). |
9 '../third_party/icu/icu.isolate', | 9 '../third_party/icu/icu.isolate', |
10 ], | 10 ], |
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
87 }, | 87 }, |
88 }], | 88 }], |
89 ['OS=="win" and component=="shared_library" and (CONFIGURATION_NAME=="Releas
e" or CONFIGURATION_NAME=="Release_x64")', { | 89 ['OS=="win" and component=="shared_library" and (CONFIGURATION_NAME=="Releas
e" or CONFIGURATION_NAME=="Release_x64")', { |
90 'variables': { | 90 'variables': { |
91 'files': [ | 91 'files': [ |
92 '<(PRODUCT_DIR)/msvcp120.dll', | 92 '<(PRODUCT_DIR)/msvcp120.dll', |
93 '<(PRODUCT_DIR)/msvcr120.dll', | 93 '<(PRODUCT_DIR)/msvcr120.dll', |
94 ], | 94 ], |
95 }, | 95 }, |
96 }], | 96 }], |
| 97 # Workaround for https://code.google.com/p/swarming/issues/detail?id=211 |
| 98 ['asan==0 or lsan==0 or msan==0 or tsan==0', { |
| 99 'variables': {}, |
| 100 }], |
97 ], | 101 ], |
98 } | 102 } |
OLD | NEW |