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

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

Issue 1190103002: Make lint fail builds. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: set android_webview to use minsdk 19 Created 5 years, 6 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 9
10 <uses-sdk android:minSdkVersion="16" android:targetSdkVersion="22" />
11 <uses-permission android:name="android.permission.INJECT_EVENTS" />
12 <uses-permission android:name="android.permission.ACCESS_MOCK_LOCATION" />
13 <uses-permission android:name="android.permission.READ_LOGS"/>
14 <uses-permission android:name="android.permission.WAKE_LOCK" />
15 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
16 <uses-permission android:name="android.permission.INTERNET" />
17
10 <application 18 <application
11 android:label="ChromePublicTest"> 19 android:label="ChromePublicTest">
12 20
13 <uses-library android:name="android.test.runner" /> 21 <uses-library android:name="android.test.runner" />
14 22
15 <provider android:name="org.chromium.chrome.test.TestContentProvider" 23 <provider android:name="org.chromium.chrome.test.TestContentProvider"
16 android:authorities="org.chromium.chrome.test.TestContentProvider" / > 24 android:authorities="org.chromium.chrome.test.TestContentProvider" / >
17 25
18 <!-- The authority must not conflict with the authority defined in Chrom eShellTestApk. --> 26 <!-- The authority must not conflict with the authority defined in Chrom eShellTestApk. -->
19 <provider android:name="org.chromium.chrome.test.partnercustomizations.T estPartnerBrowserCustomizationsProvider" 27 <provider android:name="org.chromium.chrome.test.partnercustomizations.T estPartnerBrowserCustomizationsProvider"
(...skipping 22 matching lines...) Expand all
42 <intent-filter> 50 <intent-filter>
43 <action android:name="android.intent.action.VIEW" /> 51 <action android:name="android.intent.action.VIEW" />
44 <category android:name="android.intent.category.DEFAULT" /> 52 <category android:name="android.intent.category.DEFAULT" />
45 <category android:name="android.intent.category.BROWSABLE" /> 53 <category android:name="android.intent.category.BROWSABLE" />
46 <data android:host="customtabtest.com" android:scheme="http" /> 54 <data android:host="customtabtest.com" android:scheme="http" />
47 </intent-filter> 55 </intent-filter>
48 </activity> 56 </activity>
49 57
50 <activity android:name="org.chromium.test.broker.OnDeviceInstrumentation Broker" 58 <activity android:name="org.chromium.test.broker.OnDeviceInstrumentation Broker"
51 android:exported="true"/> 59 android:exported="true"/>
52 60 <!--suppress ExportedReceiver -->
53 <receiver android:name="org.chromium.chrome.browser.customtabs.CustomTab sActivityTest$DummyBroadcastReceiver"> 61 <receiver android:name="org.chromium.chrome.browser.customtabs.CustomTab sActivityTest$DummyBroadcastReceiver">
54 <intent-filter> 62 <intent-filter>
55 <action android:name="org.chromium.chrome.browser.customtabs.TES T_PENDING_INTENT_SENT" > 63 <action android:name="org.chromium.chrome.browser.customtabs.TES T_PENDING_INTENT_SENT" >
56 </action> 64 </action>
57 </intent-filter> 65 </intent-filter>
58 </receiver> 66 </receiver>
59 </application> 67 </application>
60 68
61 <uses-sdk android:minSdkVersion="16" android:targetSdkVersion="22" />
62 <instrumentation android:name="org.chromium.chrome.test.ChromeStagingInstrum entationTestRunner" 69 <instrumentation android:name="org.chromium.chrome.test.ChromeStagingInstrum entationTestRunner"
63 android:targetPackage="{{manifest_package}}" 70 android:targetPackage="{{manifest_package}}"
64 android:label="Tests for {{manifest_package}}"/> 71 android:label="Tests for {{manifest_package}}"/>
65 <uses-permission android:name="android.permission.INJECT_EVENTS" />
66 <uses-permission android:name="android.permission.ACCESS_MOCK_LOCATION" />
67 <uses-permission android:name="android.permission.READ_LOGS"/>
68 <uses-permission android:name="android.permission.WAKE_LOCK" />
69 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
70 <uses-permission android:name="android.permission.INTERNET" />
71 </manifest> 72 </manifest>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698