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

Side by Side 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 unified diff | 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 »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <?xml version="1.0" encoding="utf-8"?> 1 <?xml version="1.0" encoding="utf-8"?>
2 <!-- 2 <!--
3 Copyright 2014 The Chromium Authors. All rights reserved. 3 Copyright 2014 The Chromium Authors. All rights reserved.
4 Use of this source code is governed by a BSD-style license that can be 4 Use of this source code is governed by a BSD-style license that can be
5 found in the LICENSE file. 5 found in the LICENSE file.
6 --> 6 -->
7 7
8 <manifest xmlns:android="http://schemas.android.com/apk/res/android" 8 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
9 package="org.chromium.native_test" 9 package="org.chromium.native_test"
10 android:versionCode="1" 10 android:versionCode="1"
(...skipping 29 matching lines...) Expand all
40 <activity android:name=".NativeUnitTestActivity" 40 <activity android:name=".NativeUnitTestActivity"
41 android:label="NativeTest" 41 android:label="NativeTest"
42 android:configChanges="orientation|keyboardHidden" 42 android:configChanges="orientation|keyboardHidden"
43 android:process=":test_process"> 43 android:process=":test_process">
44 {% endif %} 44 {% endif %}
45 <intent-filter> 45 <intent-filter>
46 <action android:name="android.intent.action.MAIN" /> 46 <action android:name="android.intent.action.MAIN" />
47 <category android:name="android.intent.category.LAUNCHER" /> 47 <category android:name="android.intent.category.LAUNCHER" />
48 </intent-filter> 48 </intent-filter>
49 </activity> 49 </activity>
50
51 <!-- If you change the number below, make sure to add/remove actual serv ice classes
52 org/chromium/base/MultiprocessTestClientService*.java -->
53 {% set num_test_client_services = 5 %}
54 <meta-data android:name="org.chromium.native_test.NUM_TEST_CLIENT_SERVIC ES"
55 android:value="{{ num_test_client_services }}"/>
56 {% for i in range(num_test_client_services) %}
57 <service android:name="org.chromium.base.MultiprocessTestClientService{{ i }}"
58 android:process=":test_client_process{{ i }}"
59 android:isolatedProcess="false"
60 android:exported="false" />
61 {% endfor %}
50 </application> 62 </application>
51 63
52 <instrumentation android:name="org.chromium.native_test.NativeTestInstrument ationTestRunner" 64 <instrumentation android:name="org.chromium.native_test.NativeTestInstrument ationTestRunner"
53 android:targetPackage="org.chromium.native_test" 65 android:targetPackage="org.chromium.native_test"
54 android:label="Instrumentation entry point for org.chromium.native_t est"/> 66 android:label="Instrumentation entry point for org.chromium.native_t est"/>
55 67
56 </manifest> 68 </manifest>
OLDNEW
« 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