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

Side by Side Diff: build_overrides/v8.gni

Issue 2561443004: Implementation of ReadableStream pipeTo and pipeThrough (Closed)
Patch Set: Stop waiting for writes to terminate at shutdown 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
OLDNEW
1 # Copyright 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 # V8 extras 5 # V8 extras
6 # Adding V8 extras files requires API owners review 6 # Adding V8 extras files requires API owners review
7 7
8 # This list is for files that export symbols that are used in other extras 8 # This list is for files that export symbols that are used in other extras
9 # files. Putting them here causes them to be executed first during snapshot 9 # files. Putting them here causes them to be executed first during snapshot
10 # creation. 10 # creation.
11 _v8_extras_dependencies = 11 _v8_extras_dependencies =
12 [ "//third_party/WebKit/Source/core/streams/CommonStrings.js" ] 12 [ "//third_party/WebKit/Source/core/streams/CommonStrings.js" ]
13 13
14 _v8_extras = [ 14 _v8_extras = [
15 "//third_party/WebKit/Source/core/streams/ByteLengthQueuingStrategy.js", 15 "//third_party/WebKit/Source/core/streams/ByteLengthQueuingStrategy.js",
16 "//third_party/WebKit/Source/core/streams/CountQueuingStrategy.js", 16 "//third_party/WebKit/Source/core/streams/CountQueuingStrategy.js",
17 "//third_party/WebKit/Source/core/streams/ReadableStream.js", 17 "//third_party/WebKit/Source/core/streams/ReadableStream.js",
18 ] 18 ]
19 19
20 v8_extra_library_files = _v8_extras_dependencies + _v8_extras 20 v8_extra_library_files = _v8_extras_dependencies + _v8_extras
21 21
22 v8_experimental_extra_library_files = 22 v8_experimental_extra_library_files = [
23 [ "//third_party/WebKit/Source/core/streams/WritableStream.js" ] 23 "//third_party/WebKit/Source/core/streams/ReadableStreamExperimentalPipeTo.js" ,
24 "//third_party/WebKit/Source/core/streams/WritableStream.js",
25 ]
24 26
25 v8_enable_inspector_override = true 27 v8_enable_inspector_override = true
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698