OLD | NEW |
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 162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
173 "v8_enable_inspector=$enable_inspector", | 173 "v8_enable_inspector=$enable_inspector", |
174 "--config-variable", | 174 "--config-variable", |
175 "v8_use_external_startup_data=$use_external_startup_data", | 175 "v8_use_external_startup_data=$use_external_startup_data", |
176 "--config-variable", | 176 "--config-variable", |
177 "v8_use_snapshot=$use_snapshot", | 177 "v8_use_snapshot=$use_snapshot", |
178 ] | 178 ] |
179 | 179 |
180 if (is_win) { | 180 if (is_win) { |
181 args += [ | 181 args += [ |
182 "--config-variable", | 182 "--config-variable", |
183 "msvs_version=2013", | 183 "msvs_version=2015", |
184 ] | 184 ] |
185 } else { | 185 } else { |
186 args += [ | 186 args += [ |
187 "--config-variable", | 187 "--config-variable", |
188 "msvs_version=0", | 188 "msvs_version=0", |
189 ] | 189 ] |
190 } | 190 } |
191 } | 191 } |
192 } | 192 } |
193 } | 193 } |
OLD | NEW |