| 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 import("//build_overrides/v8.gni") | 7 import("//build_overrides/v8.gni") |
| 8 | 8 |
| 9 declare_args() { | 9 declare_args() { |
| 10 # Includes files needed for correctness fuzzing. |
| 11 v8_correctness_fuzzer = false |
| 12 |
| 10 # Indicate if valgrind was fetched as a custom deps to make it available on | 13 # Indicate if valgrind was fetched as a custom deps to make it available on |
| 11 # swarming. | 14 # swarming. |
| 12 v8_has_valgrind = false | 15 v8_has_valgrind = false |
| 13 | 16 |
| 14 # Indicate if gcmole was fetched as a hook to make it available on swarming. | 17 # Indicate if gcmole was fetched as a hook to make it available on swarming. |
| 15 v8_gcmole = false | 18 v8_gcmole = false |
| 16 | 19 |
| 17 # Turns on compiler optimizations in V8 in Debug build. | 20 # Turns on compiler optimizations in V8 in Debug build. |
| 18 v8_optimized_debug = true | 21 v8_optimized_debug = true |
| 19 | 22 |
| (...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 126 } | 129 } |
| 127 | 130 |
| 128 template("v8_component") { | 131 template("v8_component") { |
| 129 component(target_name) { | 132 component(target_name) { |
| 130 forward_variables_from(invoker, "*", [ "configs" ]) | 133 forward_variables_from(invoker, "*", [ "configs" ]) |
| 131 configs += invoker.configs | 134 configs += invoker.configs |
| 132 configs -= v8_remove_configs | 135 configs -= v8_remove_configs |
| 133 configs += v8_add_configs | 136 configs += v8_add_configs |
| 134 } | 137 } |
| 135 } | 138 } |
| OLD | NEW |