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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: chrome/android/javatests/AndroidManifest.xml
diff --git a/chrome/android/javatests/AndroidManifest.xml b/chrome/android/javatests/AndroidManifest.xml
new file mode 100644
index 0000000000000000000000000000000000000000..28a129828274ec026b5cc0d12d91daee7d98f3be
--- /dev/null
+++ b/chrome/android/javatests/AndroidManifest.xml
@@ -0,0 +1,44 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright 2015 The Chromium Authors. All rights reserved.
+ Use of this source code is governed by a BSD-style license that can be
+ found in the LICENSE file. -->
+
+<!-- package name must be unique. -->
+<manifest xmlns:android="http://schemas.android.com/apk/res/android"
+ package="org.chromium.chrome.tests">
+
+ <application
+ android:label="ChromePublicTest">
+
+ <uses-library android:name="android.test.runner" />
+
+ <provider android:name="org.chromium.chrome.test.TestContentProvider"
+ android:authorities="org.chromium.chrome.test.TestContentProvider" />
+
+ <!-- The authority must not conflict with the authority defined in ChromeShellTestApk. -->
+ <provider android:name="org.chromium.chrome.test.partnercustomizations.TestPartnerBrowserCustomizationsProvider"
+ android:authorities="org.chromium.chrome.test.partnercustomizations" />
+
+ <activity android:name="org.chromium.sync.test.util.MockGrantCredentialsPermissionActivity"
+ android:exported="true">
+ <intent-filter>
+ <action android:name="android.intent.action.VIEW" />
+ <category android:name="android.intent.category.DEFAULT" />
+ </intent-filter>
+ </activity>
+
+ <activity android:name="org.chromium.test.broker.OnDeviceInstrumentationBroker"
+ android:exported="true"/>
+ </application>
+
+ <uses-sdk android:minSdkVersion="16" android:targetSdkVersion="22" />
+ <instrumentation android:name="org.chromium.chrome.test.ChromeStagingInstrumentationTestRunner"
+ android:targetPackage="{{manifest_package}}"
+ android:label="Tests for {{manifest_package}}"/>
+ <uses-permission android:name="android.permission.INJECT_EVENTS" />
+ <uses-permission android:name="android.permission.ACCESS_MOCK_LOCATION" />
+ <uses-permission android:name="android.permission.READ_LOGS"/>
+ <uses-permission android:name="android.permission.WAKE_LOCK" />
+ <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
+ <uses-permission android:name="android.permission.INTERNET" />
+</manifest>
« 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