| 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>
|
|
|