Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 |
| (...skipping 23 matching lines...) Expand all Loading... | |
| 34 "//third_party/WebKit/Source/core/streams/CommonStrings.js", | 34 "//third_party/WebKit/Source/core/streams/CommonStrings.js", |
| 35 "//third_party/WebKit/Source/core/streams/SimpleQueue.js", | 35 "//third_party/WebKit/Source/core/streams/SimpleQueue.js", |
| 36 | 36 |
| 37 # Extra libraries. | 37 # Extra libraries. |
| 38 "//third_party/WebKit/Source/core/streams/ByteLengthQueuingStrategy.js", | 38 "//third_party/WebKit/Source/core/streams/ByteLengthQueuingStrategy.js", |
| 39 "//third_party/WebKit/Source/core/streams/CountQueuingStrategy.js", | 39 "//third_party/WebKit/Source/core/streams/CountQueuingStrategy.js", |
| 40 "//third_party/WebKit/Source/core/streams/ReadableStream.js", | 40 "//third_party/WebKit/Source/core/streams/ReadableStream.js", |
| 41 "//third_party/WebKit/Source/core/streams/WritableStream.js", | 41 "//third_party/WebKit/Source/core/streams/WritableStream.js", |
| 42 ] | 42 ] |
| 43 v8_experimental_extra_library_files = [] | 43 v8_experimental_extra_library_files = [] |
| 44 v8_enable_inspector = true | |
|
sclittle
2017/04/07 20:07:34
Should this change be in this CL?
ajo1
2017/04/07 23:52:32
No, removed. This change actually got replicated i
| |
| 45 v8_enable_gdbjit = false | 44 v8_enable_gdbjit = false |
| 46 v8_imminent_deprecation_warnings = false | 45 v8_imminent_deprecation_warnings = false |
| 47 } | 46 } |
| 48 | 47 |
| 49 # These are the targets to check headers for by default. The files in targets | 48 # These are the targets to check headers for by default. The files in targets |
| 50 # matching these patterns (see "gn help label_pattern" for format) will have | 49 # matching these patterns (see "gn help label_pattern" for format) will have |
| 51 # their includes checked for proper dependencies when you run either | 50 # their includes checked for proper dependencies when you run either |
| 52 # "gn check" or "gn gen --check". | 51 # "gn check" or "gn gen --check". |
| 53 check_targets = [ | 52 check_targets = [ |
| 54 #"//apps/*", # Medium-hard. | 53 #"//apps/*", # Medium-hard. |
| (...skipping 220 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 275 "//third_party/google_input_tools/inputview.gni", | 274 "//third_party/google_input_tools/inputview.gni", |
| 276 | 275 |
| 277 # CLD2 should be removed soon, delete this when we do. | 276 # CLD2 should be removed soon, delete this when we do. |
| 278 "//third_party/cld_2/BUILD.gn", | 277 "//third_party/cld_2/BUILD.gn", |
| 279 "//tools/grit/grit_rule.gni", | 278 "//tools/grit/grit_rule.gni", |
| 280 | 279 |
| 281 # Not gypi-to-gn. | 280 # Not gypi-to-gn. |
| 282 "//google_apis/BUILD.gn", | 281 "//google_apis/BUILD.gn", |
| 283 "//printing/BUILD.gn", | 282 "//printing/BUILD.gn", |
| 284 ] | 283 ] |
| OLD | NEW |