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