| Index: testing/android/native_test/java/AndroidManifest.xml.jinja2
|
| diff --git a/testing/android/native_test/java/AndroidManifest.xml.jinja2 b/testing/android/native_test/java/AndroidManifest.xml.jinja2
|
| index cdd7b544c91e1ba872775a177d4724d6604d6330..c465cac72d4bb27c87b3aa4fbd7c261bec772fe0 100644
|
| --- a/testing/android/native_test/java/AndroidManifest.xml.jinja2
|
| +++ b/testing/android/native_test/java/AndroidManifest.xml.jinja2
|
| @@ -47,6 +47,18 @@ found in the LICENSE file.
|
| <category android:name="android.intent.category.LAUNCHER" />
|
| </intent-filter>
|
| </activity>
|
| +
|
| + <!-- If you change the number below, make sure to add/remove actual service classes
|
| + org/chromium/base/MultiprocessTestClientService*.java -->
|
| + {% set num_test_client_services = 5 %}
|
| + <meta-data android:name="org.chromium.native_test.NUM_TEST_CLIENT_SERVICES"
|
| + android:value="{{ num_test_client_services }}"/>
|
| + {% for i in range(num_test_client_services) %}
|
| + <service android:name="org.chromium.base.MultiprocessTestClientService{{ i }}"
|
| + android:process=":test_client_process{{ i }}"
|
| + android:isolatedProcess="false"
|
| + android:exported="false" />
|
| + {% endfor %}
|
| </application>
|
|
|
| <instrumentation android:name="org.chromium.native_test.NativeTestInstrumentationTestRunner"
|
|
|