| <?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> |
| |
| <!-- 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$DummyKeyRetrievalActivity" |
| android:exported="true"/> |
| |
| <activity android:name="org.chromium.chrome.browser.sync.SyncTestRule$DummyRecoverabilityDegradedFixActivity" |
| android:exported="true"/> |
| </application> |
| </manifest> |