| 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 22 matching lines...) Expand all Loading... |
| 33 </intent-filter> | 33 </intent-filter> |
| 34 </activity> | 34 </activity> |
| 35 <!-- The following service entries exist in order to allow us to | 35 <!-- The following service entries exist in order to allow us to |
| 36 start more than one sandboxed process. --> | 36 start more than one sandboxed process. --> |
| 37 | 37 |
| 38 <!-- NOTE: If you change the values of "android:process" for any of the
below services, | 38 <!-- NOTE: If you change the values of "android:process" for any of the
below services, |
| 39 you also need to update kHelperProcessExecutableName in chrome_cons
tants.cc. --> | 39 you also need to update kHelperProcessExecutableName in chrome_cons
tants.cc. --> |
| 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 <meta-data android:name="org.chromium.content.browser.SANDBOXED_SERVICES
_NAME" |
| 44 android:value="org.chromium.content.app.SandboxedProcessServi
ce"/> |
| 43 {% for i in range(num_sandboxed_services) %} | 45 {% for i in range(num_sandboxed_services) %} |
| 44 <service android:name="org.chromium.content.app.SandboxedProcessService{
{ i }}" | 46 <service android:name="org.chromium.content.app.SandboxedProcessService{
{ i }}" |
| 45 android:process=":sandboxed_process{{ i }}" | 47 android:process=":sandboxed_process{{ i }}" |
| 46 android:isolatedProcess="true" | 48 android:isolatedProcess="true" |
| 47 android:exported="false" /> | 49 android:exported="false" /> |
| 48 {% endfor %} | 50 {% endfor %} |
| 49 | 51 |
| 50 {% set num_privileged_services = 3 %} | 52 {% set num_privileged_services = 3 %} |
| 51 <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" |
| 52 android:value="{{ num_privileged_services }}"/> | 54 android:value="{{ num_privileged_services }}"/> |
| 55 <meta-data android:name="org.chromium.content.browser.PRIVILEGED_SERVICE
S_NAME" |
| 56 android:value="org.chromium.content.app.PrivilegedProcessServ
ice"/> |
| 53 {% for i in range(num_privileged_services) %} | 57 {% for i in range(num_privileged_services) %} |
| 54 <service android:name="org.chromium.content.app.PrivilegedProcessService
{{ i }}" | 58 <service android:name="org.chromium.content.app.PrivilegedProcessService
{{ i }}" |
| 55 android:process=":privileged_process{{ i }}" | 59 android:process=":privileged_process{{ i }}" |
| 56 android:isolatedProcess="false" | 60 android:isolatedProcess="false" |
| 57 android:exported="false" /> | 61 android:exported="false" /> |
| 58 {% endfor %} | 62 {% endfor %} |
| 59 </application> | 63 </application> |
| 60 </manifest> | 64 </manifest> |
| OLD | NEW |