Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(198)

Unified Diff: testing/android/native_test/java/AndroidManifest.xml.jinja2

Issue 2549363004: Multiprocess test client: Android child process launcher rework. (Closed)
Patch Set: content_unittests + sync Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « net/android/BUILD.gn ('k') | testing/android/native_test/native_test_launcher.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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"
« no previous file with comments | « net/android/BUILD.gn ('k') | testing/android/native_test/native_test_launcher.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698