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

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: Sublime ate my channel_pair change... Created 4 years 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
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 {% set num_test_client_services = 5 %}
nyquist 2016/12/13 20:40:31 Could you refer to the class names here to ensure
Jay Civelli 2016/12/14 02:20:11 Done.
52 <meta-data android:name="org.chromium.native_test.NUM_TEST_CLIENT_SERVIC ES"
53 android:value="{{ num_test_client_services }}"/>
54 {% for i in range(num_test_client_services) %}
55 <service android:name="org.chromium.base.MultiprocessTestClientService{{ i }}"
56 android:process=":test_client_process{{ i }}"
57 android:isolatedProcess="false"
58 android:exported="false" />
59 {% endfor %}
50 </application> 60 </application>
51 61
52 <instrumentation android:name="org.chromium.native_test.NativeTestInstrument ationTestRunner" 62 <instrumentation android:name="org.chromium.native_test.NativeTestInstrument ationTestRunner"
53 android:targetPackage="org.chromium.native_test" 63 android:targetPackage="org.chromium.native_test"
54 android:label="Instrumentation entry point for org.chromium.native_t est"/> 64 android:label="Instrumentation entry point for org.chromium.native_t est"/>
55 65
56 </manifest> 66 </manifest>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698