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

Side by Side Diff: blimp/client/android/AndroidManifest.xml.jinja2

Issue 1365823002: Add basic test suite for Blimp (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@blimp_strings
Patch Set: Forgot to remove blimp_tests from another linux gn bot Created 5 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
OLDNEW
1 <?xml version="1.0" encoding="utf-8"?> 1 <?xml version="1.0" encoding="utf-8"?>
2 2
3 <!-- Copyright 2015 The Chromium Authors. All rights reserved. 3 <!-- Copyright 2015 The Chromium Authors. All rights reserved.
4 Use of this source code is governed by a BSD-style license that can be 4 Use of this source code is governed by a BSD-style license that can be
5 found in the LICENSE file. --> 5 found in the LICENSE file. -->
6 6
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.blimp"> 8 package="{{manifest_package}}">
9 <uses-sdk android:minSdkVersion="16" android:targetSdkVersion="21" /> 9 <uses-sdk android:minSdkVersion="16" android:targetSdkVersion="21" />
10 <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/> 10 <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
11 <uses-permission android:name="android.permission.ACCESS_WIFI_STATE"/> 11 <uses-permission android:name="android.permission.ACCESS_WIFI_STATE"/>
12 <uses-permission android:name="android.permission.INTERNET"/> 12 <uses-permission android:name="android.permission.INTERNET"/>
13 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/> 13 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
14 <application android:name="BlimpApplication" 14 <application android:name="BlimpApplication"
15 android:label="Blimp"> 15 android:label="Blimp">
16 <activity android:name="BlimpRendererActivity" 16 <activity android:name="BlimpRendererActivity"
17 android:launchMode="standard" 17 android:launchMode="standard"
18 android:theme="@android:style/Theme.Holo.Light.NoActionBar" 18 android:theme="@android:style/Theme.Holo.Light.NoActionBar"
19 android:configChanges="orientation|keyboardHidden|keyboard|scr eenSize" 19 android:configChanges="orientation|keyboardHidden|keyboard|scr eenSize"
20 android:hardwareAccelerated="true"> 20 android:hardwareAccelerated="true">
21 <intent-filter> 21 <intent-filter>
22 <action android:name="android.intent.action.MAIN"/> 22 <action android:name="android.intent.action.MAIN"/>
23 <category android:name="android.intent.category.LAUNCHER"/> 23 <category android:name="android.intent.category.LAUNCHER"/>
24 </intent-filter> 24 </intent-filter>
25 </activity> 25 </activity>
26 </application> 26 </application>
27 </manifest> 27 </manifest>
OLDNEW
« no previous file with comments | « blimp/client/BUILD.gn ('k') | blimp/client/android/java/src/org/chromium/blimp/BlimpApplication.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698