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

Side by Side Diff: .gn

Issue 2561443004: Implementation of ReadableStream pipeTo and pipeThrough (Closed)
Patch Set: Rebase and move includes to .gn Created 3 years, 10 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 | third_party/WebKit/LayoutTests/TestExpectations » ('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
(...skipping 13 matching lines...) Expand all
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
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 ]
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/TestExpectations » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698