| 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_browsertests_apk"> | 10 package="org.chromium.content_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"/> |
| 44 {% for i in range(num_sandboxed_services) %} | 46 {% for i in range(num_sandboxed_services) %} |
| 45 <service android:name="org.chromium.content.app.SandboxedProcessService{
{ i }}" | 47 <service android:name="org.chromium.content.app.SandboxedProcessService{
{ i }}" |
| 46 android:process=":sandboxed_process{{ i }}" | 48 android:process=":sandboxed_process{{ i }}" |
| 47 android:isolatedProcess="true" | 49 android:isolatedProcess="true" |
| 48 android:exported="false" /> | 50 android:exported="false" /> |
| 49 {% endfor %} | 51 {% endfor %} |
| 50 | 52 |
| 51 {% set num_privileged_services = 3 %} | 53 {% set num_privileged_services = 3 %} |
| 52 <meta-data android:name="org.chromium.content.browser.NUM_PRIVILEGED_SER
VICES" | 54 <meta-data android:name="org.chromium.content.browser.NUM_PRIVILEGED_SER
VICES" |
| 53 android:value="{{ num_privileged_services }}"/> | 55 android:value="{{ num_privileged_services }}"/> |
| 56 <meta-data android:name="org.chromium.content.browser.PRIVILEGED_SERVICE
S_NAME" |
| 57 android:value="org.chromium.content.app.PrivilegedProcessServ
ice"/> |
| 54 {% for i in range(num_privileged_services) %} | 58 {% for i in range(num_privileged_services) %} |
| 55 <service android:name="org.chromium.content.app.PrivilegedProcessService
{{ i }}" | 59 <service android:name="org.chromium.content.app.PrivilegedProcessService
{{ i }}" |
| 56 android:process=":privileged_process{{ i }}" | 60 android:process=":privileged_process{{ i }}" |
| 57 android:isolatedProcess="false" | 61 android:isolatedProcess="false" |
| 58 android:exported="false" /> | 62 android:exported="false" /> |
| 59 {% endfor %} | 63 {% endfor %} |
| 60 | 64 |
| 61 </application> | 65 </application> |
| 62 | 66 |
| 63 <instrumentation android:name="org.chromium.native_test.NativeTestInstrument
ationTestRunner" | 67 <instrumentation android:name="org.chromium.native_test.NativeTestInstrument
ationTestRunner" |
| 64 android:label="ContentBrowserTests" | 68 android:label="ContentBrowserTests" |
| 65 android:targetPackage="org.chromium.content_browsertests_apk"/> | 69 android:targetPackage="org.chromium.content_browsertests_apk"/> |
| 66 </manifest> | 70 </manifest> |
| OLD | NEW |