| OLD | NEW |
| 1 <?xml version="1.0" encoding="utf-8"?> | 1 <?xml version="1.0" encoding="utf-8"?> |
| 2 <!-- Copyright 2015 The Chromium Authors. All rights reserved. | 2 <!-- Copyright 2015 The Chromium Authors. All rights reserved. |
| 3 Use of this source code is governed by a BSD-style license that can be | 3 Use of this source code is governed by a BSD-style license that can be |
| 4 found in the LICENSE file. --> | 4 found in the LICENSE file. --> |
| 5 | 5 |
| 6 <!-- package name must be unique. --> | 6 <!-- package name must be unique. --> |
| 7 <manifest xmlns:android="http://schemas.android.com/apk/res/android" | 7 <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
| 8 package="org.chromium.chrome.tests"> | 8 package="org.chromium.chrome.tests"> |
| 9 | 9 |
| 10 <uses-sdk android:minSdkVersion="16" android:targetSdkVersion="23" /> | 10 <uses-sdk android:minSdkVersion="16" android:targetSdkVersion="23" /> |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 45 <intent-filter> | 45 <intent-filter> |
| 46 <action android:name="android.intent.action.VIEW" /> | 46 <action android:name="android.intent.action.VIEW" /> |
| 47 <category android:name="android.intent.category.DEFAULT" /> | 47 <category android:name="android.intent.category.DEFAULT" /> |
| 48 <category android:name="android.intent.category.BROWSABLE" /> | 48 <category android:name="android.intent.category.BROWSABLE" /> |
| 49 <data android:host="customtabtest.com" android:scheme="http" /> | 49 <data android:host="customtabtest.com" android:scheme="http" /> |
| 50 </intent-filter> | 50 </intent-filter> |
| 51 </activity> | 51 </activity> |
| 52 | 52 |
| 53 <activity android:name="org.chromium.test.broker.OnDeviceInstrumentation
Broker" | 53 <activity android:name="org.chromium.test.broker.OnDeviceInstrumentation
Broker" |
| 54 android:exported="true"/> | 54 android:exported="true"/> |
| 55 | |
| 56 <service android:name="org.chromium.chrome.test.webapk.TestWebApkService
ImplWrapper" | |
| 57 android:exported="true"> | |
| 58 </service> | |
| 59 </application> | 55 </application> |
| 60 | 56 |
| 61 <instrumentation android:name="org.chromium.chrome.test.ChromeInstrumentatio
nTestRunner" | 57 <instrumentation android:name="org.chromium.chrome.test.ChromeInstrumentatio
nTestRunner" |
| 62 android:targetPackage="{{manifest_package}}" | 58 android:targetPackage="{{manifest_package}}" |
| 63 android:label="Tests for {{manifest_package}}"/> | 59 android:label="Tests for {{manifest_package}}"/> |
| 64 </manifest> | 60 </manifest> |
| OLD | NEW |