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

Side by Side Diff: base/base.isolate

Issue 2766673003: Remove checked-in .isolate files. (Closed)
Patch Set: Created 3 years, 9 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 | build/android/android.isolate » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
3 # found in the LICENSE file.
4 {
5 'includes': [
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
8 # exception is the Windows sandbox (?).
9 '../third_party/icu/icu.isolate',
10 # Sanitizer-instrumented third-party libraries (if enabled).
11 '../third_party/instrumented_libraries/instrumented_libraries.isolate',
12 # MSVS runtime libraries.
13 '../build/config/win/msvs_dependencies.isolate',
14 ],
15 'conditions': [
16 ['use_custom_libcxx==1', {
17 'variables': {
18 'files': [
19 '<(PRODUCT_DIR)/lib/libc++.so',
20 ],
21 },
22 }],
23 ['OS=="mac" and asan==1', {
24 'variables': {
25 'files': [
26 '<(PRODUCT_DIR)/libclang_rt.asan_osx_dynamic.dylib',
27 ],
28 },
29 }],
30 ['OS=="win" and asan==1 and component=="shared_library"', {
31 'variables': {
32 'files': [
33 # We only need x.y.z/lib/windows/clang_rt.asan_dynamic-i386.dll,
34 # but since the version (x.y.z) changes, just grab the whole dir.
35 '../third_party/llvm-build/Release+Asserts/lib/clang/',
36 ],
37 },
38 }],
39 ['OS=="linux" and (asan==1 or lsan==1 or msan==1 or tsan==1)', {
40 'variables': {
41 'files': [
42 # For llvm-symbolizer.
43 '../third_party/llvm-build/Release+Asserts/lib/libstdc++.so.6',
44 ],
45 },
46 }],
47 ['asan==1 or lsan==1 or msan==1 or tsan==1', {
48 'variables': {
49 'files': [
50 '../tools/valgrind/asan/',
51 '../third_party/llvm-build/Release+Asserts/bin/llvm-symbolizer<(EXECUT ABLE_SUFFIX)',
52 ],
53 },
54 }],
55 # Workaround for https://code.google.com/p/swarming/issues/detail?id=211
56 ['asan==0 or lsan==0 or msan==0 or tsan==0', {
57 'variables': {},
58 }],
59 ],
60 }
OLDNEW
« no previous file with comments | « no previous file | build/android/android.isolate » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698