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

Unified Diff: content/shell/BUILD.gn

Issue 2841443005: [Bindings] Create and use V8 context snapshots (Closed)
Patch Set: Work for most comments Created 3 years, 7 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 side-by-side diff with in-line comments
Download patch
Index: content/shell/BUILD.gn
diff --git a/content/shell/BUILD.gn b/content/shell/BUILD.gn
index 7ed41218bbfff3f84ab64dab4eaf15764422da9c..2b106055a0e8194fa136134d140b5403d6b16772 100644
--- a/content/shell/BUILD.gn
+++ b/content/shell/BUILD.gn
@@ -525,6 +525,14 @@ if (is_android) {
":pak",
]
+ public_deps = [
+ "//gin:v8_context_snapshot_for_blink",
+ ]
+
+ data = [
+ "$root_out_dir/context_blob.bin",
+ ]
+
if (is_win) {
deps += [ "//sandbox" ]
@@ -589,11 +597,13 @@ if (is_mac) {
bundle_data("content_shell_framework_resources") {
sources = [
"$root_out_dir/content_shell.pak",
+ "$root_out_dir/context_blob.bin",
"resources/missingImage.png",
]
public_deps = [
":pak",
+ "//gin:v8_context_snapshot_for_blink",
]
if (icu_use_data_file) {

Powered by Google App Engine
This is Rietveld 408576698