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

Side by Side Diff: components/test/android/browsertests_apk/AndroidManifest.xml.jinja2

Issue 2555303004: android: Increase NUM_PRIVILEGED_SERVICES to 20 (Closed)
Patch Set: sed Created 4 years 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 unified diff | Download patch
OLDNEW
1 <?xml version="1.0" encoding="utf-8"?> 1 <?xml version="1.0" encoding="utf-8"?>
2 2
3 <!-- Copyright 2015 The Chromium Authors. All rights reserved. 3 <!-- Copyright 2015 The Chromium Authors. All rights reserved.
4 4
5 Use of this source code is governed by a BSD-style license that can be 5 Use of this source code is governed by a BSD-style license that can be
6 found in the LICENSE file. 6 found in the LICENSE file.
7 --> 7 -->
8 8
9 <manifest xmlns:android="http://schemas.android.com/apk/res/android" 9 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
10 package="org.chromium.components_browsertests_apk"> 10 package="org.chromium.components_browsertests_apk">
(...skipping 30 matching lines...) Expand all
41 {% set num_sandboxed_services = 20 %} 41 {% set num_sandboxed_services = 20 %}
42 <meta-data android:name="org.chromium.content.browser.NUM_SANDBOXED_SERV ICES" 42 <meta-data android:name="org.chromium.content.browser.NUM_SANDBOXED_SERV ICES"
43 android:value="{{ num_sandboxed_services }}"/> 43 android:value="{{ num_sandboxed_services }}"/>
44 {% for i in range(num_sandboxed_services) %} 44 {% for i in range(num_sandboxed_services) %}
45 <service android:name="org.chromium.content.app.SandboxedProcessService{ { i }}" 45 <service android:name="org.chromium.content.app.SandboxedProcessService{ { i }}"
46 android:process=":sandboxed_process{{ i }}" 46 android:process=":sandboxed_process{{ i }}"
47 android:isolatedProcess="true" 47 android:isolatedProcess="true"
48 android:exported="false" /> 48 android:exported="false" />
49 {% endfor %} 49 {% endfor %}
50 50
51 {% set num_privileged_services = 3 %} 51 {% set num_privileged_services = 20 %}
52 <meta-data android:name="org.chromium.content.browser.NUM_PRIVILEGED_SER VICES" 52 <meta-data android:name="org.chromium.content.browser.NUM_PRIVILEGED_SER VICES"
53 android:value="{{ num_privileged_services }}"/> 53 android:value="{{ num_privileged_services }}"/>
54 {% for i in range(num_privileged_services) %} 54 {% for i in range(num_privileged_services) %}
55 <service android:name="org.chromium.content.app.PrivilegedProcessService {{ i }}" 55 <service android:name="org.chromium.content.app.PrivilegedProcessService {{ i }}"
56 android:process=":privileged_process{{ i }}" 56 android:process=":privileged_process{{ i }}"
57 android:isolatedProcess="false" 57 android:isolatedProcess="false"
58 android:exported="false" /> 58 android:exported="false" />
59 {% endfor %} 59 {% endfor %}
60 </application> 60 </application>
61 61
62 <instrumentation android:name="org.chromium.native_test.NativeTestInstrument ationTestRunner" 62 <instrumentation android:name="org.chromium.native_test.NativeTestInstrument ationTestRunner"
63 android:label="ComponentsBrowserTests" 63 android:label="ComponentsBrowserTests"
64 android:targetPackage="org.chromium.components_browsertests_apk"/> 64 android:targetPackage="org.chromium.components_browsertests_apk"/>
65 </manifest> 65 </manifest>
OLDNEW
« no previous file with comments | « chromecast/browser/android/apk/AndroidManifest.xml.jinja2 ('k') | content/public/android/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698