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

Unified Diff: chrome/android/java/AndroidManifest.xml

Issue 2192243002: Add enable_vr_shell build time flag and show icon in Daydream app luncher (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix compile erros on some bot(also make enable_vr_shell available to more manifests) Created 4 years, 4 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
« no previous file with comments | « chrome/android/chrome_public_apk_tmpl.gni ('k') | chrome/common/features.gni » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/android/java/AndroidManifest.xml
diff --git a/chrome/android/java/AndroidManifest.xml b/chrome/android/java/AndroidManifest.xml
index 295d3ddcbe35c50aa2e2cdad04f7e46a3e1da0df..b42dcf0d507ce4ce65038ae9865c18e8f988d9d9 100644
--- a/chrome/android/java/AndroidManifest.xml
+++ b/chrome/android/java/AndroidManifest.xml
@@ -155,6 +155,11 @@ by a child template that "extends" this file.
{% if channel in ['dev', 'canary', 'default'] %}
<category android:name="android.intent.category.MULTIWINDOW_LAUNCHER" />
{% endif %}
+ {% set enable_vr_shell = enable_vr_shell|default(0) %}
+ {% if enable_vr_shell == "true" %}
+ <!-- Show icon in Daydream app launcher. -->
+ <category android:name="com.google.intent.category.DAYDREAM" />
+ {% endif %}
</intent-filter>
<!-- Matches the common case of intents with no MIME type.
Make sure to keep in sync with the next filter. -->
« no previous file with comments | « chrome/android/chrome_public_apk_tmpl.gni ('k') | chrome/common/features.gni » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698