| 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("//build/config/v8_target_cpu.gni") | 6 import("//build/config/v8_target_cpu.gni") |
| 7 | 7 |
| 8 declare_args() { | 8 declare_args() { |
| 9 # Includes files needed for correctness fuzzing. | 9 # Includes files needed for correctness fuzzing. |
| 10 v8_correctness_fuzzer = false | 10 v8_correctness_fuzzer = false |
| 11 | 11 |
| 12 # Adds additional compile target for building multiple architectures at once. |
| 13 v8_multi_arch_build = false |
| 14 |
| 12 # Indicate if valgrind was fetched as a custom deps to make it available on | 15 # Indicate if valgrind was fetched as a custom deps to make it available on |
| 13 # swarming. | 16 # swarming. |
| 14 v8_has_valgrind = false | 17 v8_has_valgrind = false |
| 15 | 18 |
| 16 # Indicate if gcmole was fetched as a hook to make it available on swarming. | 19 # Indicate if gcmole was fetched as a hook to make it available on swarming. |
| 17 v8_gcmole = false | 20 v8_gcmole = false |
| 18 | 21 |
| 19 # Turns on compiler optimizations in V8 in Debug build. | 22 # Turns on compiler optimizations in V8 in Debug build. |
| 20 v8_optimized_debug = true | 23 v8_optimized_debug = true |
| 21 | 24 |
| (...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 131 } | 134 } |
| 132 | 135 |
| 133 template("v8_component") { | 136 template("v8_component") { |
| 134 component(target_name) { | 137 component(target_name) { |
| 135 forward_variables_from(invoker, "*", [ "configs" ]) | 138 forward_variables_from(invoker, "*", [ "configs" ]) |
| 136 configs += invoker.configs | 139 configs += invoker.configs |
| 137 configs -= v8_remove_configs | 140 configs -= v8_remove_configs |
| 138 configs += v8_add_configs | 141 configs += v8_add_configs |
| 139 } | 142 } |
| 140 } | 143 } |
| OLD | NEW |