OLD | NEW |
1 <?xml version="1.0" encoding="utf-8"?> | 1 <?xml version="1.0" encoding="utf-8"?> |
2 | 2 |
3 <!-- Copyright 2013 The Chromium Authors. All rights reserved. | 3 <!-- Copyright 2013 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.chromium_linker_test_apk"> | 10 package="org.chromium.chromium_linker_test_apk"> |
(...skipping 29 matching lines...) Expand all Loading... |
40 {% set num_sandboxed_services = 20 %} | 40 {% set num_sandboxed_services = 20 %} |
41 <meta-data android:name="org.chromium.content.browser.NUM_SANDBOXED_SERV
ICES" | 41 <meta-data android:name="org.chromium.content.browser.NUM_SANDBOXED_SERV
ICES" |
42 android:value="{{ num_sandboxed_services }}"/> | 42 android:value="{{ num_sandboxed_services }}"/> |
43 {% for i in range(num_sandboxed_services) %} | 43 {% for i in range(num_sandboxed_services) %} |
44 <service android:name="org.chromium.content.app.SandboxedProcessService{
{ i }}" | 44 <service android:name="org.chromium.content.app.SandboxedProcessService{
{ i }}" |
45 android:process=":sandboxed_process{{ i }}" | 45 android:process=":sandboxed_process{{ i }}" |
46 android:isolatedProcess="true" | 46 android:isolatedProcess="true" |
47 android:exported="false" /> | 47 android:exported="false" /> |
48 {% endfor %} | 48 {% endfor %} |
49 | 49 |
50 {% set num_privileged_services = 3 %} | 50 {% set num_privileged_services = 20 %} |
51 <meta-data android:name="org.chromium.content.browser.NUM_PRIVILEGED_SER
VICES" | 51 <meta-data android:name="org.chromium.content.browser.NUM_PRIVILEGED_SER
VICES" |
52 android:value="{{ num_privileged_services }}"/> | 52 android:value="{{ num_privileged_services }}"/> |
53 {% for i in range(num_privileged_services) %} | 53 {% for i in range(num_privileged_services) %} |
54 <service android:name="org.chromium.content.app.PrivilegedProcessService
{{ i }}" | 54 <service android:name="org.chromium.content.app.PrivilegedProcessService
{{ i }}" |
55 android:process=":privileged_process{{ i }}" | 55 android:process=":privileged_process{{ i }}" |
56 android:isolatedProcess="false" | 56 android:isolatedProcess="false" |
57 android:exported="false" /> | 57 android:exported="false" /> |
58 {% endfor %} | 58 {% endfor %} |
59 </application> | 59 </application> |
60 </manifest> | 60 </manifest> |
OLD | NEW |