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

Side by Side Diff: chrome/android/testshell/java/AndroidManifest.xml

Issue 11017016: Add support for building apk in release (Closed) Base URL: http://git.chromium.org/chromium/src.git@apk_combine
Patch Set: Created 8 years, 2 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 | « build/java_apk.gypi ('k') | content/shell/android/java/AndroidManifest.xml » ('j') | 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 2
3 <!-- Copyright (c) 2012 The Chromium Authors. All rights reserved. 3 <!-- Copyright (c) 2012 The Chromium Authors. All rights reserved.
4 4
5 Use of this source code is governed by a BSD-style license that can be 5 Use of this source code is governed by a BSD-style license that can be
6 found in the LICENSE file. 6 found in the LICENSE file.
7 --> 7 -->
8 8
9 <manifest xmlns:android="http://schemas.android.com/apk/res/android" 9 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
10 package="org.chromium.chrome.testshell"> 10 package="org.chromium.chrome.testshell">
11 11
12 <permission android:name="org.chromium.chrome.testshell.permission.SANDBOX" 12 <permission android:name="org.chromium.chrome.testshell.permission.SANDBOX"
13 android:protectionLevel="signature" /> 13 android:protectionLevel="signature" />
14 14
15 <application android:name="org.chromium.chrome.testshell.ChromiumTestShellAp plication" 15 <application android:name="org.chromium.chrome.testshell.ChromiumTestShellAp plication"
16 android:label="ChromiumTestShell" 16 android:label="ChromiumTestShell">
17 android:debuggable="true">
18 <activity android:name="org.chromium.chrome.testshell.ChromiumTestShellA ctivity" 17 <activity android:name="org.chromium.chrome.testshell.ChromiumTestShellA ctivity"
19 android:label="ChromiumTestShellActivity" 18 android:label="ChromiumTestShellActivity"
20 android:hardwareAccelerated="true"> 19 android:hardwareAccelerated="true">
21 <intent-filter> 20 <intent-filter>
22 <action android:name="android.intent.action.MAIN" /> 21 <action android:name="android.intent.action.MAIN" />
23 <category android:name="android.intent.category.LAUNCHER" /> 22 <category android:name="android.intent.category.LAUNCHER" />
24 </intent-filter> 23 </intent-filter>
25 </activity> 24 </activity>
26 <!-- The following service entries exist in order to allow us to 25 <!-- The following service entries exist in order to allow us to
27 start more than one sandboxed process. --> 26 start more than one sandboxed process. -->
(...skipping 24 matching lines...) Expand all
52 android:process=":sandboxed_process5" 51 android:process=":sandboxed_process5"
53 android:permission="org.chromium.content_shell.permission.SANDB OX" 52 android:permission="org.chromium.content_shell.permission.SANDB OX"
54 android:exported="false" /> 53 android:exported="false" />
55 </application> 54 </application>
56 55
57 <uses-sdk android:minSdkVersion="14" android:targetSdkVersion="16" /> 56 <uses-sdk android:minSdkVersion="14" android:targetSdkVersion="16" />
58 <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/> 57 <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
59 <uses-permission android:name="android.permission.INTERNET"/> 58 <uses-permission android:name="android.permission.INTERNET"/>
60 <uses-permission android:name="android.permission.WAKE_LOCK"/> 59 <uses-permission android:name="android.permission.WAKE_LOCK"/>
61 </manifest> 60 </manifest>
OLDNEW
« no previous file with comments | « build/java_apk.gypi ('k') | content/shell/android/java/AndroidManifest.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698