Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 <?xml version="1.0" encoding="utf-8"?> | 1 <?xml version="1.0" encoding="utf-8"?> |
| 2 <!-- Copyright (c) 2012 The Chromium Authors. All rights reserved. Use of | 2 <!-- Copyright 2015 The Chromium Authors. All rights reserved. |
| 3 this source code is governed by a BSD-style license that can be found | 3 Use of this source code is governed by a BSD-style license that can be |
| 4 in the LICENSE file. --> | 4 found in the LICENSE file. --> |
| 5 <!-- package name must be unique so suffix with "tests" so package loader | 5 |
| 6 doesn't ignore this. --> | 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.sync_shell.tests"> | 8 package="org.chromium.chrome.sync_shell.tests"> |
| 9 | |
| 9 <uses-sdk android:minSdkVersion="16" android:targetSdkVersion="22" /> | 10 <uses-sdk android:minSdkVersion="16" android:targetSdkVersion="22" /> |
| 10 <uses-permission android:name="android.permission.RUN_INSTRUMENTATION" /> | |
| 11 <uses-permission android:name="android.permission.ACCESS_MOCK_LOCATION" /> | 11 <uses-permission android:name="android.permission.ACCESS_MOCK_LOCATION" /> |
| 12 <uses-permission android:name="android.permission.READ_LOGS"/> | 12 <uses-permission android:name="android.permission.READ_LOGS"/> |
| 13 <uses-permission android:name="android.permission.WAKE_LOCK" /> | 13 <uses-permission android:name="android.permission.WAKE_LOCK" /> |
| 14 <!-- We add an application tag here just so that we can indicate that this | 14 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/> |
| 15 package needs to link against the android.test library, which is | 15 <uses-permission android:name="android.permission.INTERNET" /> |
| 16 needed when building test cases. --> | 16 |
| 17 <application> | 17 <application |
| 18 android:label="ChromeSyncShellTest"> | |
| 19 | |
| 18 <uses-library android:name="android.test.runner" /> | 20 <uses-library android:name="android.test.runner" /> |
| 21 | |
| 22 <provider android:name="org.chromium.chrome.test.TestContentProvider" | |
|
newt (away)
2015/08/11 21:25:29
Remove all the providers, activities, receivers, e
pval...(no longer on Chromium)
2015/08/14 21:51:10
Done. I think I had just copied over the ChromePub
| |
| 23 android:authorities="org.chromium.chrome.test.TestContentProvider" | |
| 24 android:exported="true" /> | |
| 25 | |
| 26 <provider android:name="org.chromium.chrome.test.partnercustomizations.T estPartnerBrowserCustomizationsProvider" | |
| 27 android:authorities="org.chromium.chrome.test.partnercustomizations. TestPartnerBrowserCustomizationsProvider" | |
| 28 android:exported="true" /> | |
| 29 <provider android:name="org.chromium.chrome.test.partnercustomizations.T estPartnerBrowserCustomizationsDelayedProvider" | |
| 30 android:authorities="org.chromium.chrome.test.partnercustomizations. TestPartnerBrowserCustomizationsDelayedProvider" | |
| 31 android:exported="true" /> | |
| 32 | |
| 19 <activity android:name="org.chromium.sync.test.util.MockGrantCredentials PermissionActivity" | 33 <activity android:name="org.chromium.sync.test.util.MockGrantCredentials PermissionActivity" |
| 20 android:exported="false"> | 34 android:exported="true"> |
| 21 <intent-filter> | 35 <intent-filter> |
| 22 <action android:name="android.intent.action.VIEW" /> | 36 <action android:name="android.intent.action.VIEW" /> |
| 23 <category android:name="android.intent.category.DEFAULT" /> | 37 <category android:name="android.intent.category.DEFAULT" /> |
| 24 </intent-filter> | 38 </intent-filter> |
| 25 </activity> | 39 </activity> |
| 40 | |
| 41 <activity android:name="org.chromium.chrome.browser.customtabs.CustomTab ExternalNavigationTest$DummyActivityForSpecialScheme" | |
| 42 android:exported="true" > | |
| 43 <intent-filter> | |
| 44 <action android:name="android.intent.action.VIEW" /> | |
| 45 <category android:name="android.intent.category.DEFAULT" /> | |
| 46 <category android:name="android.intent.category.BROWSABLE" /> | |
| 47 <data android:host="customtabtest" android:scheme="customtab" /> | |
| 48 </intent-filter> | |
| 49 </activity> | |
| 50 | |
| 51 <activity android:name="org.chromium.chrome.browser.customtabs.CustomTab ExternalNavigationTest$DummyActivityForHttp" | |
| 52 android:exported="true" > | |
| 53 <intent-filter> | |
| 54 <action android:name="android.intent.action.VIEW" /> | |
| 55 <category android:name="android.intent.category.DEFAULT" /> | |
| 56 <category android:name="android.intent.category.BROWSABLE" /> | |
| 57 <data android:host="customtabtest.com" android:scheme="http" /> | |
| 58 </intent-filter> | |
| 59 </activity> | |
| 60 | |
| 61 <activity android:name="org.chromium.test.broker.OnDeviceInstrumentation Broker" | |
| 62 android:exported="true"/> | |
| 63 <!--suppress ExportedReceiver --> | |
| 64 <receiver android:name="org.chromium.chrome.browser.customtabs.CustomTab sActivityTest$DummyBroadcastReceiver"> | |
| 65 <intent-filter> | |
| 66 <action android:name="org.chromium.chrome.browser.customtabs.TES T_PENDING_INTENT_SENT" > | |
| 67 </action> | |
| 68 </intent-filter> | |
| 69 </receiver> | |
| 26 </application> | 70 </application> |
| 71 | |
| 27 <instrumentation android:name="org.chromium.chrome.test.ChromeInstrumentatio nTestRunner" | 72 <instrumentation android:name="org.chromium.chrome.test.ChromeInstrumentatio nTestRunner" |
| 28 android:targetPackage="org.chromium.chrome.sync_shell" | 73 android:targetPackage="{{manifest_package}}" |
| 29 android:label="Tests for org.chromium.chrome.sync_shell"/> | 74 android:label="Tests for {{manifest_package}}"/> |
| 30 </manifest> | 75 </manifest> |
| OLD | NEW |