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

Side by Side Diff: gni/isolate.gni

Issue 2359093002: [build] Use MSVS 2015 by default. (Closed)
Patch Set: Created 4 years, 3 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 | gypfiles/vs_toolchain.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2016 the V8 project authors. All rights reserved. 1 # Copyright 2016 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 import("//build/config/sanitizers/sanitizers.gni") 5 import("//build/config/sanitizers/sanitizers.gni")
6 import("//third_party/icu/config.gni") 6 import("//third_party/icu/config.gni")
7 import("v8.gni") 7 import("v8.gni")
8 8
9 declare_args() { 9 declare_args() {
10 # Sets the test isolation mode (noop|prepare|check). 10 # Sets the test isolation mode (noop|prepare|check).
(...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after
155 "target_arch=$target_arch", 155 "target_arch=$target_arch",
156 "--config-variable", 156 "--config-variable",
157 "v8_use_external_startup_data=$use_external_startup_data", 157 "v8_use_external_startup_data=$use_external_startup_data",
158 "--config-variable", 158 "--config-variable",
159 "v8_use_snapshot=$use_snapshot", 159 "v8_use_snapshot=$use_snapshot",
160 ] 160 ]
161 161
162 if (is_win) { 162 if (is_win) {
163 args += [ 163 args += [
164 "--config-variable", 164 "--config-variable",
165 "msvs_version=2013", 165 "msvs_version=2015",
166 ] 166 ]
167 } else { 167 } else {
168 args += [ 168 args += [
169 "--config-variable", 169 "--config-variable",
170 "msvs_version=0", 170 "msvs_version=0",
171 ] 171 ]
172 } 172 }
173 } 173 }
174 } 174 }
175 } 175 }
OLDNEW
« no previous file with comments | « no previous file | gypfiles/vs_toolchain.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698