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

Side by Side Diff: src/base.isolate

Issue 2533813002: [build] Use MSVS 2015 by default. (Closed)
Patch Set: Add todos Created 4 years 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
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 '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',
7 ], 10 ],
8 'conditions': [ 11 'conditions': [
9 ['v8_use_snapshot=="true" and v8_use_external_startup_data==1', { 12 ['v8_use_snapshot=="true" and v8_use_external_startup_data==1', {
10 'variables': { 13 'variables': {
11 'files': [ 14 'files': [
12 '<(PRODUCT_DIR)/natives_blob.bin', 15 '<(PRODUCT_DIR)/natives_blob.bin',
13 '<(PRODUCT_DIR)/snapshot_blob.bin', 16 '<(PRODUCT_DIR)/snapshot_blob.bin',
14 ], 17 ],
15 }, 18 },
16 }], 19 }],
(...skipping 18 matching lines...) Expand all
35 '../third_party/llvm-build/Release+Asserts/bin/llvm-symbolizer<(EXECUT ABLE_SUFFIX)', 38 '../third_party/llvm-build/Release+Asserts/bin/llvm-symbolizer<(EXECUT ABLE_SUFFIX)',
36 ], 39 ],
37 }, 40 },
38 }], 41 }],
39 # Workaround for https://code.google.com/p/swarming/issues/detail?id=211 42 # Workaround for https://code.google.com/p/swarming/issues/detail?id=211
40 ['asan==0 or cfi_vptr==0 or msan==0 or tsan==0', { 43 ['asan==0 or cfi_vptr==0 or msan==0 or tsan==0', {
41 'variables': {}, 44 'variables': {},
42 }], 45 }],
43 ], 46 ],
44 } 47 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698