Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(54)

Side by Side Diff: chrome/android/javatests/AndroidManifest.xml

Issue 1258563005: Added Signin Utilities (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 <?xml version="1.0" encoding="utf-8"?> 1 <?xml version="1.0" encoding="utf-8"?>
2 <!-- Copyright 2015 The Chromium Authors. All rights reserved. 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 3 Use of this source code is governed by a BSD-style license that can be
4 found in the LICENSE file. --> 4 found in the LICENSE file. -->
5 5
6 <!-- package name must be unique. --> 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.tests"> 8 package="org.chromium.chrome.tests"
9 android:sharedUserId="org.chromium.chrome" >
9 10
10 <uses-sdk android:minSdkVersion="16" android:targetSdkVersion="22" /> 11 <uses-sdk android:minSdkVersion="16" android:targetSdkVersion="22" />
11 <uses-permission android:name="android.permission.ACCESS_MOCK_LOCATION" /> 12 <uses-permission android:name="android.permission.ACCESS_MOCK_LOCATION" />
12 <uses-permission android:name="android.permission.READ_LOGS"/> 13 <uses-permission android:name="android.permission.READ_LOGS"/>
13 <uses-permission android:name="android.permission.WAKE_LOCK" /> 14 <uses-permission android:name="android.permission.WAKE_LOCK" />
14 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/> 15 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
15 <uses-permission android:name="android.permission.INTERNET" /> 16 <uses-permission android:name="android.permission.INTERNET" />
17 <uses-permission android:name="android.permission.AUTHENTICATE_ACCOUNTS" />
16 18
17 <application 19 <application
18 android:label="ChromePublicTest"> 20 android:label="ChromePublicTest" >
19 21
20 <uses-library android:name="android.test.runner" /> 22 <uses-library android:name="android.test.runner" />
21 23
22 <provider android:name="org.chromium.chrome.test.TestContentProvider" 24 <provider android:name="org.chromium.chrome.test.TestContentProvider"
23 android:authorities="org.chromium.chrome.test.TestContentProvider" 25 android:authorities="org.chromium.chrome.test.TestContentProvider"
24 android:exported="true" /> 26 android:exported="true" />
25 27
26 <!-- The authority must not conflict with the authority defined in Chrom eShellTestApk. --> 28 <!-- The authority must not conflict with the authority defined in Chrom eShellTestApk. -->
27 <provider android:name="org.chromium.chrome.test.partnercustomizations.T estPartnerBrowserCustomizationsProvider" 29 <provider android:name="org.chromium.chrome.test.partnercustomizations.T estPartnerBrowserCustomizationsProvider"
28 android:authorities="org.chromium.chrome.test.partnercustomizations" 30 android:authorities="org.chromium.chrome.test.partnercustomizations"
(...skipping 29 matching lines...) Expand all
58 60
59 <activity android:name="org.chromium.test.broker.OnDeviceInstrumentation Broker" 61 <activity android:name="org.chromium.test.broker.OnDeviceInstrumentation Broker"
60 android:exported="true"/> 62 android:exported="true"/>
61 <!--suppress ExportedReceiver --> 63 <!--suppress ExportedReceiver -->
62 <receiver android:name="org.chromium.chrome.browser.customtabs.CustomTab sActivityTest$DummyBroadcastReceiver"> 64 <receiver android:name="org.chromium.chrome.browser.customtabs.CustomTab sActivityTest$DummyBroadcastReceiver">
63 <intent-filter> 65 <intent-filter>
64 <action android:name="org.chromium.chrome.browser.customtabs.TES T_PENDING_INTENT_SENT" > 66 <action android:name="org.chromium.chrome.browser.customtabs.TES T_PENDING_INTENT_SENT" >
65 </action> 67 </action>
66 </intent-filter> 68 </intent-filter>
67 </receiver> 69 </receiver>
68 </application> 70
71 <!-- Account Authenticator Service -->
72 <service
73 android:name="org.chromium.chrome.test.services.accountauthenticator .AccountAuthenticatorService"
74 android:exported="false" >
75 <intent-filter>
76 <action android:name="android.accounts.AccountAuthenticator" />
77 </intent-filter>
78
79 <meta-data
80 android:name="android.accounts.AccountAuthenticator"
81 android:resource="@xml/authenticator" />
82 </service>
83 </application>
69 84
70 <instrumentation android:name="org.chromium.chrome.test.ChromeInstrumentatio nTestRunner" 85 <instrumentation android:name="org.chromium.chrome.test.ChromeInstrumentatio nTestRunner"
71 android:targetPackage="{{manifest_package}}" 86 android:targetPackage="{{manifest_package}}"
72 android:label="Tests for {{manifest_package}}"/> 87 android:label="Tests for {{manifest_package}}"/>
73 </manifest> 88 </manifest>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698