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

Unified Diff: build_overrides/v8.gni

Issue 2498983002: ReadableStream and WritableStream share strings (Closed)
Patch Set: Rebase to fix patch errors and fix typo Created 4 years 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/streams/CommonStrings.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build_overrides/v8.gni
diff --git a/build_overrides/v8.gni b/build_overrides/v8.gni
index 08eb3c14fc9c88ef10252a1be4ab1e4cecb141bf..59132e3caa4bf2fb0c537e58c5cad8daa16893e4 100644
--- a/build_overrides/v8.gni
+++ b/build_overrides/v8.gni
@@ -5,11 +5,20 @@
# V8 extras
# Adding V8 extras files requires API owners review
-v8_extra_library_files = [
+# This list is for files that export symbols that are used in other extras
+# files. Putting them here causes them to be executed first during snapshot
+# creation.
+_v8_extras_dependencies =
+ [ "//third_party/WebKit/Source/core/streams/CommonStrings.js" ]
+
+_v8_extras = [
"//third_party/WebKit/Source/core/streams/ByteLengthQueuingStrategy.js",
"//third_party/WebKit/Source/core/streams/CountQueuingStrategy.js",
"//third_party/WebKit/Source/core/streams/ReadableStream.js",
]
+
+v8_extra_library_files = _v8_extras_dependencies + _v8_extras
+
v8_experimental_extra_library_files =
[ "//third_party/WebKit/Source/core/streams/WritableStream.js" ]
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/streams/CommonStrings.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698