OLD | NEW |
1 <?xml version="1.0" encoding="utf-8"?> | 1 <?xml version="1.0" encoding="utf-8"?> |
2 <!-- Copyright 2015 The Chromium Authors. All rights reserved. | 2 <!-- Copyright 2015 The Chromium Authors. All rights reserved. |
3 Use of this source code is governed by a BSD-style license that can be | 3 Use of this source code is governed by a BSD-style license that can be |
4 found in the LICENSE file. --> | 4 found in the LICENSE file. --> |
5 | 5 |
6 <!-- | 6 <!-- |
7 Note: This is a jinja2 template, processed at build time into the final manifest
. | 7 Note: This is a jinja2 template, processed at build time into the final manifest
. |
8 | 8 |
9 Blocks denoted with { % block some_name % }foo{ % endblock % } can be overridden | 9 Blocks denoted with { % block some_name % }foo{ % endblock % } can be overridden |
10 by a child template that "extends" this file. | 10 by a child template that "extends" this file. |
(...skipping 776 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
787 <action android:name="android.intent.action.MEDIA_BUTTON" /> | 787 <action android:name="android.intent.action.MEDIA_BUTTON" /> |
788 </intent-filter> | 788 </intent-filter> |
789 </receiver> | 789 </receiver> |
790 | 790 |
791 | 791 |
792 <meta-data android:name="com.google.android.gms.version" | 792 <meta-data android:name="com.google.android.gms.version" |
793 android:value="@integer/google_play_services_version" /> | 793 android:value="@integer/google_play_services_version" /> |
794 | 794 |
795 <meta-data android:name="org.chromium.content.browser.SMART_CLIP_PROVIDE
R" | 795 <meta-data android:name="org.chromium.content.browser.SMART_CLIP_PROVIDE
R" |
796 android:value="org.chromium.content.browser.SmartClipProvider"/> | 796 android:value="org.chromium.content.browser.SmartClipProvider"/> |
797 <meta-data android:name="org.chromium.components.service_tab_launcher.SE
RVICE_TAB_LAUNCHER" | |
798 android:value="org.chromium.chrome.browser.ChromeServiceTabLa
uncher" /> | |
799 | 797 |
800 {% set enable_leakcanary = enable_leakcanary|default(0) %} | 798 {% set enable_leakcanary = enable_leakcanary|default(0) %} |
801 {% if enable_leakcanary == "true" %} | 799 {% if enable_leakcanary == "true" %} |
802 {# Entries for LeakCanary copied from (and then tweaked): | 800 {# Entries for LeakCanary copied from (and then tweaked): |
803 //third_party/leakcanary/src/leakcanary-android/src/main/AndroidM
anifest.xml #} | 801 //third_party/leakcanary/src/leakcanary-android/src/main/AndroidM
anifest.xml #} |
804 <service | 802 <service |
805 android:name="com.squareup.leakcanary.internal.HeapAnalyzerService
" | 803 android:name="com.squareup.leakcanary.internal.HeapAnalyzerService
" |
806 android:process=":leakcanary" | 804 android:process=":leakcanary" |
807 android:enabled="false" /> | 805 android:enabled="false" /> |
808 <activity | 806 <activity |
(...skipping 30 matching lines...) Expand all Loading... |
839 choose the first MediaRouteController that can play it, so the orde
r of the list can be important. | 837 choose the first MediaRouteController that can play it, so the orde
r of the list can be important. |
840 The most specific MediaRouteControllers should be listed first, fol
lowed by more generic ones. | 838 The most specific MediaRouteControllers should be listed first, fol
lowed by more generic ones. |
841 The downstream manifest replaces this block, and hence replaces the
list of media route | 839 The downstream manifest replaces this block, and hence replaces the
list of media route |
842 controllers with its own list. --> | 840 controllers with its own list. --> |
843 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE
RS" | 841 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE
RS" |
844 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia
RouteController"/> | 842 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia
RouteController"/> |
845 | 843 |
846 {% endblock %} | 844 {% endblock %} |
847 </application> | 845 </application> |
848 </manifest> | 846 </manifest> |
OLD | NEW |