| 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("v8.gni") | 7 import("v8.gni") |
| 7 | 8 |
| 8 declare_args() { | 9 declare_args() { |
| 9 # Sets the test isolation mode (noop|prepare|check). | 10 # Sets the test isolation mode (noop|prepare|check). |
| 10 v8_test_isolation_mode = "noop" | 11 v8_test_isolation_mode = "noop" |
| 11 } | 12 } |
| 12 | 13 |
| 13 template("v8_isolate_run") { | 14 template("v8_isolate_run") { |
| 14 # Remember target name as within the action scope the target name will be | 15 # Remember target name as within the action scope the target name will be |
| 15 # different. | 16 # different. |
| (...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 161 ] | 162 ] |
| 162 } else { | 163 } else { |
| 163 args += [ | 164 args += [ |
| 164 "--config-variable", | 165 "--config-variable", |
| 165 "msvs_version=0", | 166 "msvs_version=0", |
| 166 ] | 167 ] |
| 167 } | 168 } |
| 168 } | 169 } |
| 169 } | 170 } |
| 170 } | 171 } |
| OLD | NEW |