Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(555)

Side by Side Diff: base/base.isolate

Issue 868313006: Work around a bug in test isolation code. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698