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

Side by Side Diff: build_overrides/v8.gni

Issue 2654663003: Conditionally convert V8 build overrides to declare_args. (Closed)
Patch Set: Fix 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
« BUILD.gn ('K') | « 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 # This file should be empty.
6 6
7 if (((v8_current_cpu == "x86" || v8_current_cpu == "x64" || 7 # TODO(brettw) http://crbug.com/684096 Remove this when all callers are updated
8 v8_current_cpu == "x87") && (is_linux || is_mac)) || 8 # to use the new build overrides system.
9 (v8_current_cpu == "ppc64" && is_linux)) {
10 v8_enable_gdbjit_default = true
11 }
12
13 v8_imminent_deprecation_warnings_default = true
14
15 # Add simple extras solely for the purpose of the cctests.
16 v8_extra_library_files = [ "//test/cctest/test-extra.js" ]
17 v8_experimental_extra_library_files =
18 [ "//test/cctest/test-experimental-extra.js" ]
19
20 v8_enable_inspector_override = true
21
22 declare_args() {
23 # Use static libraries instead of source_sets.
24 v8_static_library = false
25 }
OLDNEW
« BUILD.gn ('K') | « BUILD.gn ('k') | gni/v8.gni » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698