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

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

Issue 1469803007: Extend the multidex logic to only kick in for the main browser application. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Switch to using manifest xml Created 5 years, 1 month 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/java/AndroidManifest.xml
diff --git a/chrome/android/java/AndroidManifest.xml b/chrome/android/java/AndroidManifest.xml
index 30c1bf0b61e9177bca149927e38878ef4b05fd69..9ada53977a148dcac8eaecd73f5d866e684c8cc4 100644
--- a/chrome/android/java/AndroidManifest.xml
+++ b/chrome/android/java/AndroidManifest.xml
@@ -604,8 +604,11 @@ by a child template that "extends" this file.
<meta-data android:name="org.chromium.content.browser.NUM_PRIVILEGED_SERVICES"
android:value="{{ num_privileged_services }}"/>
{% for i in range(num_privileged_services) %}
+ {% set privileged_process_name = ':privileged_process%d' % i %}
+ <meta-data android:name="{{ manifest_package }}{{ privileged_process_name }}.ignore_multidex"
Yaron 2015/11/25 19:02:59 nit: omit this for release builds (ok as follow-up
Ted C 2015/11/25 19:14:11 Added a TODO, this looks like it will require addi
+android:value="true" />
<service android:name="org.chromium.content.app.PrivilegedProcessService{{ i }}"
- android:process=":privileged_process{{ i }}"
+ android:process="{{ privileged_process_name }}"
android:permission="{{ manifest_package }}.permission.CHILD_SERVICE"
android:isolatedProcess="false"
android:exported="false" />

Powered by Google App Engine
This is Rietveld 408576698