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

Side by Side Diff: .gn

Issue 2752133003: Use SimpleQueue in WritableStream implementation (Closed)
Patch Set: Remove stale comments and correct copyright date Created 3 years, 9 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/Source/core/streams/ReadableStream.js » ('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 14 matching lines...) Expand all
25 # BUILDCONFIG.gn file. That file sets up the global variables like "is_ios". 25 # BUILDCONFIG.gn file. That file sets up the global variables like "is_ios".
26 # This means that the default_args can not depend on the platform, 26 # This means that the default_args can not depend on the platform,
27 # architecture, or other build parameters. If you really need that, the other 27 # architecture, or other build parameters. If you really need that, the other
28 # repo should define a flag that toggles on a behavior that implements the 28 # repo should define a flag that toggles on a behavior that implements the
29 # additional logic required by Chrome to set the variables. 29 # additional logic required by Chrome to set the variables.
30 default_args = { 30 default_args = {
31 v8_extra_library_files = [ 31 v8_extra_library_files = [
32 # Dependencies used by the extra libraries. Putting them here causes them 32 # Dependencies used by the extra libraries. Putting them here causes them
33 # to be executed first during snapshot creation. 33 # to be executed first during snapshot creation.
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 36
36 # Extra libraries. 37 # Extra libraries.
37 "//third_party/WebKit/Source/core/streams/ByteLengthQueuingStrategy.js", 38 "//third_party/WebKit/Source/core/streams/ByteLengthQueuingStrategy.js",
38 "//third_party/WebKit/Source/core/streams/CountQueuingStrategy.js", 39 "//third_party/WebKit/Source/core/streams/CountQueuingStrategy.js",
39 "//third_party/WebKit/Source/core/streams/ReadableStream.js", 40 "//third_party/WebKit/Source/core/streams/ReadableStream.js",
40 ] 41 ]
41 v8_experimental_extra_library_files = [ 42 v8_experimental_extra_library_files = [
42 "//third_party/WebKit/Source/core/streams/ReadableStreamExperimentalPipeTo.j s", 43 "//third_party/WebKit/Source/core/streams/ReadableStreamExperimentalPipeTo.j s",
43 "//third_party/WebKit/Source/core/streams/WritableStream.js", 44 "//third_party/WebKit/Source/core/streams/WritableStream.js",
44 ] 45 ]
(...skipping 232 matching lines...) Expand 10 before | Expand all | Expand 10 after
277 "//third_party/google_input_tools/inputview.gni", 278 "//third_party/google_input_tools/inputview.gni",
278 279
279 # CLD2 should be removed soon, delete this when we do. 280 # CLD2 should be removed soon, delete this when we do.
280 "//third_party/cld_2/BUILD.gn", 281 "//third_party/cld_2/BUILD.gn",
281 "//tools/grit/grit_rule.gni", 282 "//tools/grit/grit_rule.gni",
282 283
283 # Not gypi-to-gn. 284 # Not gypi-to-gn.
284 "//google_apis/BUILD.gn", 285 "//google_apis/BUILD.gn",
285 "//printing/BUILD.gn", 286 "//printing/BUILD.gn",
286 ] 287 ]
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/streams/ReadableStream.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698