| 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 {% set num_test_client_services = 5 %} |
| 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> |
| OLD | NEW |