summaryrefslogtreecommitdiffstats
path: root/chrome/android/javatests/AndroidManifest.xml
blob: f073befd26a6f18bd508d0ca66449e56ef394331 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright 2015 The Chromium Authors. All rights reserved.
     Use of this source code is governed by a BSD-style license that can be
     found in the LICENSE file. -->

<!-- package name must be unique. -->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="org.chromium.chrome.tests">

    <uses-sdk android:minSdkVersion="16" android:targetSdkVersion="23" />
    <uses-permission android:name="android.permission.ACCESS_MOCK_LOCATION" />
    <uses-permission android:name="android.permission.READ_LOGS"/>
    <uses-permission android:name="android.permission.WAKE_LOCK" />
    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
    <uses-permission android:name="android.permission.INTERNET" />

    <application
        android:label="ChromePublicTest">

        <uses-library android:name="android.test.runner" />

        <provider android:name="org.chromium.chrome.test.TestContentProvider"
            android:authorities="org.chromium.chrome.test.TestContentProvider"
            android:exported="true" />

        <provider android:name="org.chromium.chrome.test.partnercustomizations.TestPartnerBrowserCustomizationsProvider"
            android:authorities="org.chromium.chrome.test.partnercustomizations.TestPartnerBrowserCustomizationsProvider"
            android:exported="true" />
        <provider android:name="org.chromium.chrome.test.partnercustomizations.TestPartnerBrowserCustomizationsDelayedProvider"
            android:authorities="org.chromium.chrome.test.partnercustomizations.TestPartnerBrowserCustomizationsDelayedProvider"
            android:exported="true" />

        <activity android:name="org.chromium.chrome.browser.customtabs.CustomTabExternalNavigationTest$DummyActivityForSpecialScheme"
            android:exported="true" >
            <intent-filter>
                <action android:name="android.intent.action.VIEW" />
                <category android:name="android.intent.category.DEFAULT" />
                <category android:name="android.intent.category.BROWSABLE" />
                <data android:host="customtabtest" android:scheme="customtab" />
            </intent-filter>
        </activity>

        <activity android:name="org.chromium.chrome.browser.customtabs.CustomTabExternalNavigationTest$DummyActivityForHttp"
            android:exported="true" >
            <intent-filter>
                <action android:name="android.intent.action.VIEW" />
                <category android:name="android.intent.category.DEFAULT" />
                <category android:name="android.intent.category.BROWSABLE" />
                <data android:host="customtabtest.com" android:scheme="http" />
            </intent-filter>
        </activity>

        <activity android:name="org.chromium.test.broker.OnDeviceInstrumentationBroker"
            android:exported="true"/>
        <!--suppress ExportedReceiver -->
        <receiver android:name="org.chromium.chrome.browser.customtabs.CustomTabsActivityTest$DummyBroadcastReceiver">
            <intent-filter>
                <action android:name="org.chromium.chrome.browser.customtabs.TEST_PENDING_INTENT_SENT" >
                </action>
            </intent-filter>
        </receiver>
    </application>

    <instrumentation android:name="org.chromium.chrome.test.ChromeInstrumentationTestRunner"
        android:targetPackage="{{manifest_package}}"
        android:label="Tests for {{manifest_package}}"/>
</manifest>