| OLD | NEW |
| 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 Loading... |
| 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 %} | |
| 62 </application> | 50 </application> |
| 63 | 51 |
| 64 <instrumentation android:name="org.chromium.native_test.NativeTestInstrument
ationTestRunner" | 52 <instrumentation android:name="org.chromium.native_test.NativeTestInstrument
ationTestRunner" |
| 65 android:targetPackage="org.chromium.native_test" | 53 android:targetPackage="org.chromium.native_test" |
| 66 android:label="Instrumentation entry point for org.chromium.native_t
est"/> | 54 android:label="Instrumentation entry point for org.chromium.native_t
est"/> |
| 67 | 55 |
| 68 </manifest> | 56 </manifest> |
| OLD | NEW |