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

Unified Diff: chrome/android/webapk/shell_apk/BUILD.gn

Issue 1968353002: Upstream: Add URL intent filter to WebAPK (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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: chrome/android/webapk/shell_apk/BUILD.gn
diff --git a/chrome/android/webapk/shell_apk/BUILD.gn b/chrome/android/webapk/shell_apk/BUILD.gn
index a7ff94566ddf3d801722bfcdccc4976f34518d50..f0529e9fad697ec5ca2b043b04ace8fb6442e5bc 100644
--- a/chrome/android/webapk/shell_apk/BUILD.gn
+++ b/chrome/android/webapk/shell_apk/BUILD.gn
@@ -19,7 +19,10 @@ declare_args() {
webapk_mac = "template"
# The scope of the urls that the WebAPK can navigate to.
- webapk_scope = "https://www.template.com"
+ webapk_scope_url = "https://www.template.com"
+
+ # Host part of |webapk_scope|.
+ webapk_scope_url_host = "www.template.com"
}
shell_apk_manifest_package =
@@ -36,7 +39,8 @@ jinja_template("shell_apk_manifest") {
"host_url=$webapk_start_url",
"runtime_host=$webapk_runtime_host",
"mac=$webapk_mac",
- "scope=$webapk_scope",
+ "scope_url=$webapk_scope_url",
+ "scope_url_host=$webapk_scope_url_host",
]
}

Powered by Google App Engine
This is Rietveld 408576698