910e62b5创建于 1月15日历史提交
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright 2023 The Chromium Authors
     Use of this source code is governed by a BSD-style license that can be
     found in the LICENSE file.
-->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
          package="org.chromium.chrome.tests">
    <!-- Contatins entries used by ChromePublicTest.apk, but not by other tests
         that use chrome_public_test_apk_tmpl() -->
    <application>
        <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.chrome.browser.customtabs.BlankAuthTabLauncherTestActivity"
            android:theme="@style/Theme.Chromium.Activity"
            android:exported="true"
            android:configChanges="orientation|keyboardHidden|keyboard|screenSize|mcc|mnc|screenLayout|smallestScreenSize|uiMode|density"/>

        <activity android:name="org.chromium.chrome.browser.permissions.PermissionPromptRenderTest$PermissionTestActivity"
            android:theme="@style/Theme.Chromium.TabbedMode"
            android:exported="true"
            android:hardwareAccelerated="false"
            android:configChanges="orientation|keyboardHidden|keyboard|screenSize|mcc|mnc|screenLayout|smallestScreenSize|uiMode|density">
        </activity>
        <!-- Used by ContextualSearchManagerTest -->
        <activity android:name="android.app.Activity" 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:scheme="externalappscheme" />
            </intent-filter>
        </activity>

        <activity android:name="org.chromium.chrome.browser.sync.SyncTestRule$FakeKeyRetrievalActivity"
            android:exported="true"/>

        <activity android:name="org.chromium.chrome.browser.sync.SyncTestRule$FakeRecoverabilityDegradedFixActivity"
            android:exported="true"/>
    </application>
</manifest>