Don't show supervised user as "already on this device" while they're being imported.
[chromium-blink-merge.git] / chrome / android / javatests / AndroidManifest.xml
blob28a129828274ec026b5cc0d12d91daee7d98f3be
1 <?xml version="1.0" encoding="utf-8"?>
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
4      found in the LICENSE file. -->
6 <!-- package name must be unique. -->
7 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
8     package="org.chromium.chrome.tests">
10     <application
11         android:label="ChromePublicTest">
13         <uses-library android:name="android.test.runner" />
15         <provider android:name="org.chromium.chrome.test.TestContentProvider"
16             android:authorities="org.chromium.chrome.test.TestContentProvider" />
18         <!-- The authority must not conflict with the authority defined in ChromeShellTestApk. -->
19         <provider android:name="org.chromium.chrome.test.partnercustomizations.TestPartnerBrowserCustomizationsProvider"
20             android:authorities="org.chromium.chrome.test.partnercustomizations" />
22         <activity android:name="org.chromium.sync.test.util.MockGrantCredentialsPermissionActivity"
23             android:exported="true">
24             <intent-filter>
25                 <action android:name="android.intent.action.VIEW" />
26                 <category android:name="android.intent.category.DEFAULT" />
27             </intent-filter>
28         </activity>
30         <activity android:name="org.chromium.test.broker.OnDeviceInstrumentationBroker"
31             android:exported="true"/>
32     </application>
34     <uses-sdk android:minSdkVersion="16" android:targetSdkVersion="22" />
35     <instrumentation android:name="org.chromium.chrome.test.ChromeStagingInstrumentationTestRunner"
36         android:targetPackage="{{manifest_package}}"
37         android:label="Tests for {{manifest_package}}"/>
38     <uses-permission android:name="android.permission.INJECT_EVENTS" />
39     <uses-permission android:name="android.permission.ACCESS_MOCK_LOCATION" />
40     <uses-permission android:name="android.permission.READ_LOGS"/>
41     <uses-permission android:name="android.permission.WAKE_LOCK" />
42     <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
43     <uses-permission android:name="android.permission.INTERNET" />
44 </manifest>