| 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 13 matching lines...) Expand all Loading... |
| 24 v8_extra_library_files = [ | 24 v8_extra_library_files = [ |
| 25 # Dependencies used by the extra libraries. Putting them here causes them | 25 # Dependencies used by the extra libraries. Putting them here causes them |
| 26 # to be executed first during snapshot creation. | 26 # to be executed first during snapshot creation. |
| 27 "//third_party/WebKit/Source/core/streams/CommonStrings.js", | 27 "//third_party/WebKit/Source/core/streams/CommonStrings.js", |
| 28 | 28 |
| 29 # Extra libraries. | 29 # Extra libraries. |
| 30 "//third_party/WebKit/Source/core/streams/ByteLengthQueuingStrategy.js", | 30 "//third_party/WebKit/Source/core/streams/ByteLengthQueuingStrategy.js", |
| 31 "//third_party/WebKit/Source/core/streams/CountQueuingStrategy.js", | 31 "//third_party/WebKit/Source/core/streams/CountQueuingStrategy.js", |
| 32 "//third_party/WebKit/Source/core/streams/ReadableStream.js", | 32 "//third_party/WebKit/Source/core/streams/ReadableStream.js", |
| 33 ] | 33 ] |
| 34 v8_experimental_extra_library_files = | 34 v8_experimental_extra_library_files = [ |
| 35 [ "//third_party/WebKit/Source/core/streams/WritableStream.js" ] | 35 "//third_party/WebKit/Source/core/streams/ReadableStreamExperimentalPipeTo.j
s", |
| 36 "//third_party/WebKit/Source/core/streams/WritableStream.js", |
| 37 ] |
| 36 v8_enable_inspector = true | 38 v8_enable_inspector = true |
| 37 v8_enable_gdbjit = false | 39 v8_enable_gdbjit = false |
| 38 v8_imminent_deprecation_warnings = false | 40 v8_imminent_deprecation_warnings = false |
| 39 } | 41 } |
| 40 | 42 |
| 41 # These are the targets to check headers for by default. The files in targets | 43 # These are the targets to check headers for by default. The files in targets |
| 42 # matching these patterns (see "gn help label_pattern" for format) will have | 44 # matching these patterns (see "gn help label_pattern" for format) will have |
| 43 # their includes checked for proper dependencies when you run either | 45 # their includes checked for proper dependencies when you run either |
| 44 # "gn check" or "gn gen --check". | 46 # "gn check" or "gn gen --check". |
| 45 check_targets = [ | 47 check_targets = [ |
| (...skipping 226 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 272 "//third_party/google_input_tools/inputview.gni", | 274 "//third_party/google_input_tools/inputview.gni", |
| 273 | 275 |
| 274 # CLD2 should be removed soon, delete this when we do. | 276 # CLD2 should be removed soon, delete this when we do. |
| 275 "//third_party/cld_2/BUILD.gn", | 277 "//third_party/cld_2/BUILD.gn", |
| 276 "//tools/grit/grit_rule.gni", | 278 "//tools/grit/grit_rule.gni", |
| 277 | 279 |
| 278 # Not gypi-to-gn. | 280 # Not gypi-to-gn. |
| 279 "//google_apis/BUILD.gn", | 281 "//google_apis/BUILD.gn", |
| 280 "//printing/BUILD.gn", | 282 "//printing/BUILD.gn", |
| 281 ] | 283 ] |
| OLD | NEW |