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

Side by Side Diff: gni/v8.gni

Issue 2623843002: [foozzie] Add correctness fuzzer resources to build output (Closed)
Patch Set: Review Created 3 years, 11 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 | « BUILD.gn ('k') | tools/foozzie/BUILD.gn » ('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("//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
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 }
OLDNEW
« no previous file with comments | « BUILD.gn ('k') | tools/foozzie/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698