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

Side by Side Diff: android_webview/tools/WebViewShell/AndroidManifest.xml

Issue 1190103002: Make lint fail builds. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix exported crash for ChromeShellTest 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
« no previous file with comments | « android_webview/test/shell/AndroidManifest.xml ('k') | build/android/gyp/lint.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!-- 1 <!--
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 6
7 <manifest 7 <manifest
8 xmlns:android="http://schemas.android.com/apk/res/android" 8 xmlns:android="http://schemas.android.com/apk/res/android"
9 package="org.chromium.webview_shell" 9 package="org.chromium.webview_shell"
10 android:versionCode="1" 10 android:versionCode="1"
11 android:versionName="1.0" > 11 android:versionName="1.0" >
12 12
13 <uses-sdk android:minSdkVersion="19" 13 <uses-sdk android:minSdkVersion="19" android:targetSdkVersion="22" />
14 android:targetSdkVersion="22" />
15 14
16 <uses-permission android:name="android.permission.INTERNET" /> 15 <uses-permission android:name="android.permission.INTERNET" />
17 <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/> 16 <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
18 <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/> 17 <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
19 <uses-permission android:name="android.permission.CAMERA"/> 18 <uses-permission android:name="android.permission.CAMERA"/>
20 <uses-permission android:name="android.permission.RECORD_AUDIO"/> 19 <uses-permission android:name="android.permission.RECORD_AUDIO"/>
21 <uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS"/> 20 <uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS"/>
22 21
23 <application 22 <application
24 android:icon="@drawable/ic_launcher" 23 android:icon="@drawable/ic_launcher"
(...skipping 27 matching lines...) Expand all
52 <intent-filter> 51 <intent-filter>
53 <action android:name="android.intent.action.VIEW" /> 52 <action android:name="android.intent.action.VIEW" />
54 <category android:name="android.intent.category.DEFAULT" /> 53 <category android:name="android.intent.category.DEFAULT" />
55 <category android:name="android.intent.category.BROWSABLE" /> 54 <category android:name="android.intent.category.BROWSABLE" />
56 <data android:scheme="http" /> 55 <data android:scheme="http" />
57 <data android:scheme="https" /> 56 <data android:scheme="https" />
58 </intent-filter> 57 </intent-filter>
59 </activity> 58 </activity>
60 </application> 59 </application>
61 </manifest> 60 </manifest>
OLDNEW
« no previous file with comments | « android_webview/test/shell/AndroidManifest.xml ('k') | build/android/gyp/lint.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698