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

Side by Side Diff: .gn

Issue 2648233006: Use default_args for configuring V8 (Closed)
Patch Set: 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 | « no previous file | build_overrides/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 # This file is used by the GN meta build system to find the root of the source 1 # This file is used by the GN meta build system to find the root of the source
2 # tree and to set startup options. For documentation on the values set in this 2 # tree and to set startup options. For documentation on the values set in this
3 # file, run "gn help dotfile" at the command line. 3 # file, run "gn help dotfile" at the command line.
4 4
5 import("//build/dotfile_settings.gni") 5 import("//build/dotfile_settings.gni")
6 6
7 # The location of the build configuration file. 7 # The location of the build configuration file.
8 buildconfig = "//build/config/BUILDCONFIG.gn" 8 buildconfig = "//build/config/BUILDCONFIG.gn"
9 9
10 # The secondary source root is a parallel directory tree where 10 # The secondary source root is a parallel directory tree where
11 # GN build files are placed when they can not be placed directly 11 # GN build files are placed when they can not be placed directly
12 # in the source tree, e.g. for third party source trees. 12 # in the source tree, e.g. for third party source trees.
13 secondary_source = "//build/secondary/" 13 secondary_source = "//build/secondary/"
14 14
15 # These arguments override the default values for items in a declare_args
16 # block. "gn args" in turn can override these.
17 #
18 # In general the value for a build arg in the declare_args block should be the
19 # default. In some cases, a DEPS-ed in project will want different defaults for
20 # being built as part of Chrome vs. being built standalone. In this case, the
21 # Chrome defaults should go here. There should be no overrides here for
22 # values declared in the main Chrome repository.
23 default_args = {
24 v8_extra_library_files = [
25 # Dependencies used by the extra libraries. Putting them here causes them
26 # to be executed first during snapshot creation.
27 "//third_party/WebKit/Source/core/streams/CommonStrings.js",
Adam Rice 2017/01/26 03:59:01 Is it safe to assume that nothing is going to come
Michael Achenbach 2017/01/26 07:49:21 good question. Deferring to Brett
28
29 # Extra libraries.
30 "//third_party/WebKit/Source/core/streams/ByteLengthQueuingStrategy.js",
31 "//third_party/WebKit/Source/core/streams/CountQueuingStrategy.js",
32 "//third_party/WebKit/Source/core/streams/ReadableStream.js",
33 ]
34 v8_experimental_extra_library_files =
35 [ "//third_party/WebKit/Source/core/streams/WritableStream.js" ]
36 v8_enable_inspector = true
37 v8_enable_gdbjit = false
38 v8_imminent_deprecation_warnings = false
39 }
40
15 # These are the targets to check headers for by default. The files in targets 41 # These are the targets to check headers for by default. The files in targets
16 # matching these patterns (see "gn help label_pattern" for format) will have 42 # matching these patterns (see "gn help label_pattern" for format) will have
17 # their includes checked for proper dependencies when you run either 43 # their includes checked for proper dependencies when you run either
18 # "gn check" or "gn gen --check". 44 # "gn check" or "gn gen --check".
19 check_targets = [ 45 check_targets = [
20 #"//apps/*", # Medium-hard. 46 #"//apps/*", # Medium-hard.
21 "//ash/*", 47 "//ash/*",
22 "//base/*", 48 "//base/*",
23 "//blink/*", 49 "//blink/*",
24 "//breakpad/*", 50 "//breakpad/*",
(...skipping 221 matching lines...) Expand 10 before | Expand all | Expand 10 after
246 "//third_party/google_input_tools/inputview.gni", 272 "//third_party/google_input_tools/inputview.gni",
247 273
248 # CLD2 should be removed soon, delete this when we do. 274 # CLD2 should be removed soon, delete this when we do.
249 "//third_party/cld_2/BUILD.gn", 275 "//third_party/cld_2/BUILD.gn",
250 "//tools/grit/grit_rule.gni", 276 "//tools/grit/grit_rule.gni",
251 277
252 # Not gypi-to-gn. 278 # Not gypi-to-gn.
253 "//google_apis/BUILD.gn", 279 "//google_apis/BUILD.gn",
254 "//printing/BUILD.gn", 280 "//printing/BUILD.gn",
255 ] 281 ]
OLDNEW
« no previous file with comments | « no previous file | build_overrides/v8.gni » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698