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

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

Issue 2905353003: Enable multidex for ChromePublicTests app (Closed)
Patch Set: Created 3 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 9
10 <uses-sdk android:minSdkVersion="16" android:targetSdkVersion="23" /> 10 <uses-sdk android:minSdkVersion="16" android:targetSdkVersion="23" />
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 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/> 14 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
15 <uses-permission android:name="android.permission.INTERNET" /> 15 <uses-permission android:name="android.permission.INTERNET" />
16 16
17 <application 17 <application
18 android:name="android.support.multidex.MultiDexApplication"
jbudorick 2017/05/30 19:44:25 This should likely be BaseChromiumApplication inst
18 android:label="ChromePublicTest"> 19 android:label="ChromePublicTest">
19 20
20 <uses-library android:name="android.test.runner" /> 21 <uses-library android:name="android.test.runner" />
21 22
22 <provider android:name="org.chromium.chrome.test.TestContentProvider" 23 <provider android:name="org.chromium.chrome.test.TestContentProvider"
23 android:authorities="org.chromium.chrome.test.TestContentProvider" 24 android:authorities="org.chromium.chrome.test.TestContentProvider"
24 android:exported="true" /> 25 android:exported="true" />
25 26
26 <provider android:name="org.chromium.chrome.test.partnercustomizations.T estPartnerBrowserCustomizationsProvider" 27 <provider android:name="org.chromium.chrome.test.partnercustomizations.T estPartnerBrowserCustomizationsProvider"
27 android:authorities="org.chromium.chrome.test.partnercustomizations. TestPartnerBrowserCustomizationsProvider" 28 android:authorities="org.chromium.chrome.test.partnercustomizations. TestPartnerBrowserCustomizationsProvider"
(...skipping 27 matching lines...) Expand all
55 </application> 56 </application>
56 57
57 <instrumentation android:name="org.chromium.base.test.BaseChromiumAndroidJUn itRunner" 58 <instrumentation android:name="org.chromium.base.test.BaseChromiumAndroidJUn itRunner"
58 android:targetPackage="{{manifest_package}}" 59 android:targetPackage="{{manifest_package}}"
59 android:label="Tests for {{manifest_package}}" 60 android:label="Tests for {{manifest_package}}"
60 chromium-junit4="true"/> 61 chromium-junit4="true"/>
61 <instrumentation android:name="org.chromium.chrome.test.ChromeInstrumentatio nTestRunner" 62 <instrumentation android:name="org.chromium.chrome.test.ChromeInstrumentatio nTestRunner"
62 android:targetPackage="{{manifest_package}}" 63 android:targetPackage="{{manifest_package}}"
63 android:label="Tests for {{manifest_package}}"/> 64 android:label="Tests for {{manifest_package}}"/>
64 </manifest> 65 </manifest>
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698