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

Side by Side Diff: src/base.isolate

Issue 1421973007: [swarming] Isolate llvm symbolizer and tsan suppressions file. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 1 month 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 | « build/isolate.gypi ('k') | 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 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 'conditions': [ 5 'conditions': [
6 ['use_custom_libcxx==1', { 6 ['use_custom_libcxx==1', {
7 'variables': { 7 'variables': {
8 'files': [ 8 'files': [
9 '<(PRODUCT_DIR)/lib/libc++.so', 9 '<(PRODUCT_DIR)/lib/libc++.so',
10 ], 10 ],
11 }, 11 },
12 }], 12 }],
13 ['v8_use_snapshot=="true" and v8_use_external_startup_data==1', { 13 ['v8_use_snapshot=="true" and v8_use_external_startup_data==1', {
14 'variables': { 14 'variables': {
15 'files': [ 15 'files': [
16 '<(PRODUCT_DIR)/natives_blob.bin', 16 '<(PRODUCT_DIR)/natives_blob.bin',
17 '<(PRODUCT_DIR)/snapshot_blob.bin', 17 '<(PRODUCT_DIR)/snapshot_blob.bin',
18 ], 18 ],
19 }, 19 },
20 }], 20 }],
21 ['OS=="linux" and component=="shared_library" and target_arch=="ia32"', { 21 ['OS=="linux" and component=="shared_library" and target_arch=="ia32"', {
22 'variables': { 22 'variables': {
23 'files': [ 23 'files': [
24 '<(PRODUCT_DIR)/lib/', 24 '<(PRODUCT_DIR)/lib/',
25 ], 25 ],
26 }, 26 },
27 }], 27 }],
28 ['tsan==1', {
29 'variables': {
30 'files': [
31 '../tools/sanitizers/tsan_suppressions.txt',
32 ],
33 },
34 }],
35 ['OS=="linux" and (asan==1 or cfi_vptr==1 or msan==1 or tsan==1)', {
Michael Achenbach 2015/10/30 14:41:03 This is basically copied from chromium: https://co
36 'variables': {
37 'files': [
38 # For llvm-symbolizer.
39 '../third_party/llvm-build/Release+Asserts/lib/libstdc++.so.6',
40 ],
41 },
42 }],
43 ['asan==1 or cfi_vptr==1 or msan==1 or tsan==1', {
44 'variables': {
45 'files': [
46 '../third_party/llvm-build/Release+Asserts/bin/llvm-symbolizer<(EXECUT ABLE_SUFFIX)',
47 ],
48 },
49 }],
50 # Workaround for https://code.google.com/p/swarming/issues/detail?id=211
51 ['asan==0 or cfi_vptr==0 or msan==0 or tsan==0', {
52 'variables': {},
53 }],
28 ], 54 ],
29 } 55 }
OLDNEW
« no previous file with comments | « build/isolate.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698