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="22" /> |
| 11 <uses-permission android:name="android.permission.INJECT_EVENTS" /> |
| 12 <uses-permission android:name="android.permission.ACCESS_MOCK_LOCATION" /> |
| 13 <uses-permission android:name="android.permission.READ_LOGS"/> |
| 14 <uses-permission android:name="android.permission.WAKE_LOCK" /> |
| 15 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/> |
| 16 <uses-permission android:name="android.permission.INTERNET" /> |
| 17 |
10 <application | 18 <application |
11 android:label="ChromePublicTest"> | 19 android:label="ChromePublicTest"> |
12 | 20 |
13 <uses-library android:name="android.test.runner" /> | 21 <uses-library android:name="android.test.runner" /> |
14 | 22 |
15 <provider android:name="org.chromium.chrome.test.TestContentProvider" | 23 <provider android:name="org.chromium.chrome.test.TestContentProvider" |
16 android:authorities="org.chromium.chrome.test.TestContentProvider" /
> | 24 android:authorities="org.chromium.chrome.test.TestContentProvider" |
| 25 android:exported="true" /> |
17 | 26 |
18 <!-- The authority must not conflict with the authority defined in Chrom
eShellTestApk. --> | 27 <!-- The authority must not conflict with the authority defined in Chrom
eShellTestApk. --> |
19 <provider android:name="org.chromium.chrome.test.partnercustomizations.T
estPartnerBrowserCustomizationsProvider" | 28 <provider android:name="org.chromium.chrome.test.partnercustomizations.T
estPartnerBrowserCustomizationsProvider" |
20 android:authorities="org.chromium.chrome.test.partnercustomizations"
/> | 29 android:authorities="org.chromium.chrome.test.partnercustomizations" |
| 30 android:exported="true" /> |
21 | 31 |
22 <activity android:name="org.chromium.sync.test.util.MockGrantCredentials
PermissionActivity" | 32 <activity android:name="org.chromium.sync.test.util.MockGrantCredentials
PermissionActivity" |
23 android:exported="true"> | 33 android:exported="true"> |
24 <intent-filter> | 34 <intent-filter> |
25 <action android:name="android.intent.action.VIEW" /> | 35 <action android:name="android.intent.action.VIEW" /> |
26 <category android:name="android.intent.category.DEFAULT" /> | 36 <category android:name="android.intent.category.DEFAULT" /> |
27 </intent-filter> | 37 </intent-filter> |
28 </activity> | 38 </activity> |
29 | 39 |
30 <activity android:name="org.chromium.chrome.browser.customtabs.CustomTab
ExternalNavigationTest$DummyActivityForSpecialScheme" | 40 <activity android:name="org.chromium.chrome.browser.customtabs.CustomTab
ExternalNavigationTest$DummyActivityForSpecialScheme" |
(...skipping 11 matching lines...) Expand all Loading... |
42 <intent-filter> | 52 <intent-filter> |
43 <action android:name="android.intent.action.VIEW" /> | 53 <action android:name="android.intent.action.VIEW" /> |
44 <category android:name="android.intent.category.DEFAULT" /> | 54 <category android:name="android.intent.category.DEFAULT" /> |
45 <category android:name="android.intent.category.BROWSABLE" /> | 55 <category android:name="android.intent.category.BROWSABLE" /> |
46 <data android:host="customtabtest.com" android:scheme="http" /> | 56 <data android:host="customtabtest.com" android:scheme="http" /> |
47 </intent-filter> | 57 </intent-filter> |
48 </activity> | 58 </activity> |
49 | 59 |
50 <activity android:name="org.chromium.test.broker.OnDeviceInstrumentation
Broker" | 60 <activity android:name="org.chromium.test.broker.OnDeviceInstrumentation
Broker" |
51 android:exported="true"/> | 61 android:exported="true"/> |
52 | 62 <!--suppress ExportedReceiver --> |
53 <receiver android:name="org.chromium.chrome.browser.customtabs.CustomTab
sActivityTest$DummyBroadcastReceiver"> | 63 <receiver android:name="org.chromium.chrome.browser.customtabs.CustomTab
sActivityTest$DummyBroadcastReceiver"> |
54 <intent-filter> | 64 <intent-filter> |
55 <action android:name="org.chromium.chrome.browser.customtabs.TES
T_PENDING_INTENT_SENT" > | 65 <action android:name="org.chromium.chrome.browser.customtabs.TES
T_PENDING_INTENT_SENT" > |
56 </action> | 66 </action> |
57 </intent-filter> | 67 </intent-filter> |
58 </receiver> | 68 </receiver> |
59 </application> | 69 </application> |
60 | 70 |
61 <uses-sdk android:minSdkVersion="16" android:targetSdkVersion="22" /> | |
62 <instrumentation android:name="org.chromium.chrome.test.ChromeStagingInstrum
entationTestRunner" | 71 <instrumentation android:name="org.chromium.chrome.test.ChromeStagingInstrum
entationTestRunner" |
63 android:targetPackage="{{manifest_package}}" | 72 android:targetPackage="{{manifest_package}}" |
64 android:label="Tests for {{manifest_package}}"/> | 73 android:label="Tests for {{manifest_package}}"/> |
65 <uses-permission android:name="android.permission.INJECT_EVENTS" /> | |
66 <uses-permission android:name="android.permission.ACCESS_MOCK_LOCATION" /> | |
67 <uses-permission android:name="android.permission.READ_LOGS"/> | |
68 <uses-permission android:name="android.permission.WAKE_LOCK" /> | |
69 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/> | |
70 <uses-permission android:name="android.permission.INTERNET" /> | |
71 </manifest> | 74 </manifest> |
OLD | NEW |