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