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

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

Issue 1141283003: Upstream oodles of Chrome for Android code into Chromium. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: final patch? Created 5 years, 7 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
(Empty)
1 <?xml version="1.0" encoding="utf-8"?>
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
4 found in the LICENSE file. -->
5
6 <!-- package name must be unique. -->
7 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
8 package="org.chromium.chrome.tests">
9
10 <application
11 android:label="ChromePublicTest">
12
13 <uses-library android:name="android.test.runner" />
14
15 <provider android:name="org.chromium.chrome.test.TestContentProvider"
16 android:authorities="org.chromium.chrome.test.TestContentProvider" / >
17
18 <!-- The authority must not conflict with the authority defined in Chrom eShellTestApk. -->
19 <provider android:name="org.chromium.chrome.test.partnercustomizations.T estPartnerBrowserCustomizationsProvider"
20 android:authorities="org.chromium.chrome.test.partnercustomizations" />
21
22 <activity android:name="org.chromium.sync.test.util.MockGrantCredentials PermissionActivity"
23 android:exported="true">
24 <intent-filter>
25 <action android:name="android.intent.action.VIEW" />
26 <category android:name="android.intent.category.DEFAULT" />
27 </intent-filter>
28 </activity>
29
30 <activity android:name="org.chromium.test.broker.OnDeviceInstrumentation Broker"
31 android:exported="true"/>
32 </application>
33
34 <uses-sdk android:minSdkVersion="16" android:targetSdkVersion="22" />
35 <instrumentation android:name="org.chromium.chrome.test.ChromeStagingInstrum entationTestRunner"
36 android:targetPackage="{{manifest_package}}"
37 android:label="Tests for {{manifest_package}}"/>
38 <uses-permission android:name="android.permission.INJECT_EVENTS" />
39 <uses-permission android:name="android.permission.ACCESS_MOCK_LOCATION" />
40 <uses-permission android:name="android.permission.READ_LOGS"/>
41 <uses-permission android:name="android.permission.WAKE_LOCK" />
42 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
43 <uses-permission android:name="android.permission.INTERNET" />
44 </manifest>
OLDNEW
« no previous file with comments | « chrome/android/java_staging/strings/translations/android_strings_zh-TW.xtb ('k') | chrome/android/javatests/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698