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

Side by Side Diff: build_overrides/v8.gni

Issue 2519053003: Add a GN override to make building fuzzer targets optional. (Closed)
Patch Set: Created 4 years, 1 month 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') | gni/v8.gni » ('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 2015 The V8 project authors. All rights reserved. 1 # Copyright 2015 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/v8_target_cpu.gni") 5 import("//build/config/v8_target_cpu.gni")
6 6
7 if (((v8_current_cpu == "x86" || v8_current_cpu == "x64" || 7 if (((v8_current_cpu == "x86" || v8_current_cpu == "x64" ||
8 v8_current_cpu == "x87") && (is_linux || is_mac)) || 8 v8_current_cpu == "x87") && (is_linux || is_mac)) ||
9 (v8_current_cpu == "ppc64" && is_linux)) { 9 (v8_current_cpu == "ppc64" && is_linux)) {
10 v8_enable_gdbjit_default = true 10 v8_enable_gdbjit_default = true
11 } 11 }
12 12
13 v8_imminent_deprecation_warnings_default = true 13 v8_imminent_deprecation_warnings_default = true
14 14
15 # Add simple extras solely for the purpose of the cctests. 15 # Add simple extras solely for the purpose of the cctests.
16 v8_extra_library_files = [ "//test/cctest/test-extra.js" ] 16 v8_extra_library_files = [ "//test/cctest/test-extra.js" ]
17 v8_experimental_extra_library_files = 17 v8_experimental_extra_library_files =
18 [ "//test/cctest/test-experimental-extra.js" ] 18 [ "//test/cctest/test-experimental-extra.js" ]
19 19
20 v8_enable_inspector_override = true 20 v8_enable_inspector_override = true
21 v8_enable_fuzzers_override = true
OLDNEW
« no previous file with comments | « BUILD.gn ('k') | gni/v8.gni » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698