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 android:sharedUserId="org.chromium.chrome" > |
9 | 10 |
10 <uses-sdk android:minSdkVersion="16" android:targetSdkVersion="22" /> | 11 <uses-sdk android:minSdkVersion="16" android:targetSdkVersion="22" /> |
11 <uses-permission android:name="android.permission.ACCESS_MOCK_LOCATION" /> | 12 <uses-permission android:name="android.permission.ACCESS_MOCK_LOCATION" /> |
12 <uses-permission android:name="android.permission.READ_LOGS"/> | 13 <uses-permission android:name="android.permission.READ_LOGS"/> |
13 <uses-permission android:name="android.permission.WAKE_LOCK" /> | 14 <uses-permission android:name="android.permission.WAKE_LOCK" /> |
14 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/> | 15 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/> |
15 <uses-permission android:name="android.permission.INTERNET" /> | 16 <uses-permission android:name="android.permission.INTERNET" /> |
| 17 <uses-permission android:name="android.permission.AUTHENTICATE_ACCOUNTS" /> |
16 | 18 |
17 <application | 19 <application |
18 android:label="ChromePublicTest"> | 20 android:label="ChromePublicTest" > |
19 | 21 |
20 <uses-library android:name="android.test.runner" /> | 22 <uses-library android:name="android.test.runner" /> |
21 | 23 |
22 <provider android:name="org.chromium.chrome.test.TestContentProvider" | 24 <provider android:name="org.chromium.chrome.test.TestContentProvider" |
23 android:authorities="org.chromium.chrome.test.TestContentProvider" | 25 android:authorities="org.chromium.chrome.test.TestContentProvider" |
24 android:exported="true" /> | 26 android:exported="true" /> |
25 | 27 |
26 <provider android:name="org.chromium.chrome.test.partnercustomizations.T
estPartnerBrowserCustomizationsProvider" | 28 <provider android:name="org.chromium.chrome.test.partnercustomizations.T
estPartnerBrowserCustomizationsProvider" |
27 android:authorities="org.chromium.chrome.test.partnercustomizations.
TestPartnerBrowserCustomizationsProvider" | 29 android:authorities="org.chromium.chrome.test.partnercustomizations.
TestPartnerBrowserCustomizationsProvider" |
28 android:exported="true" /> | 30 android:exported="true" /> |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
60 | 62 |
61 <activity android:name="org.chromium.test.broker.OnDeviceInstrumentation
Broker" | 63 <activity android:name="org.chromium.test.broker.OnDeviceInstrumentation
Broker" |
62 android:exported="true"/> | 64 android:exported="true"/> |
63 <!--suppress ExportedReceiver --> | 65 <!--suppress ExportedReceiver --> |
64 <receiver android:name="org.chromium.chrome.browser.customtabs.CustomTab
sActivityTest$DummyBroadcastReceiver"> | 66 <receiver android:name="org.chromium.chrome.browser.customtabs.CustomTab
sActivityTest$DummyBroadcastReceiver"> |
65 <intent-filter> | 67 <intent-filter> |
66 <action android:name="org.chromium.chrome.browser.customtabs.TES
T_PENDING_INTENT_SENT" > | 68 <action android:name="org.chromium.chrome.browser.customtabs.TES
T_PENDING_INTENT_SENT" > |
67 </action> | 69 </action> |
68 </intent-filter> | 70 </intent-filter> |
69 </receiver> | 71 </receiver> |
70 </application> | 72 |
| 73 <!-- Account Authenticator Service --> |
| 74 <service |
| 75 android:name="org.chromium.chrome.test.services.accountauthenticator
.AccountAuthenticatorService" |
| 76 android:exported="false" > |
| 77 <intent-filter> |
| 78 <action android:name="android.accounts.AccountAuthenticator" /> |
| 79 </intent-filter> |
| 80 |
| 81 <meta-data |
| 82 android:name="android.accounts.AccountAuthenticator" |
| 83 android:resource="@xml/authenticator" /> |
| 84 </service> |
| 85 </application> |
71 | 86 |
72 <instrumentation android:name="org.chromium.chrome.test.ChromeInstrumentatio
nTestRunner" | 87 <instrumentation android:name="org.chromium.chrome.test.ChromeInstrumentatio
nTestRunner" |
73 android:targetPackage="{{manifest_package}}" | 88 android:targetPackage="{{manifest_package}}" |
74 android:label="Tests for {{manifest_package}}"/> | 89 android:label="Tests for {{manifest_package}}"/> |
75 </manifest> | 90 </manifest> |
OLD | NEW |