OLD | NEW |
1 <?xml version="1.0" encoding="utf-8"?> | 1 <?xml version="1.0" encoding="utf-8"?> |
2 <!-- Copyright 2014 The Chromium Authors. All rights reserved. Use of | 2 <!-- Copyright 2014 The Chromium Authors. All rights reserved. Use of |
3 this source code is governed by a BSD-style license that can be found | 3 this source code is governed by a BSD-style license that can be found |
4 in the LICENSE file. --> | 4 in the LICENSE file. --> |
5 <!-- package name must be unique so suffix with "tests" so package loader | 5 <!-- package name must be unique so suffix with "tests" so package loader |
6 doesn't ignore this. --> | 6 doesn't ignore this. --> |
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.components.devtools_bridge.tests"> | 8 package="org.chromium.components.devtools_bridge.tests"> |
9 <application> | 9 <application> |
10 <uses-library android:name="android.test.runner" /> | 10 <uses-library android:name="android.test.runner" /> |
(...skipping 12 matching lines...) Expand all Loading... |
23 </activity> | 23 </activity> |
24 </application> | 24 </application> |
25 <uses-sdk android:minSdkVersion="14" android:targetSdkVersion="21" /> | 25 <uses-sdk android:minSdkVersion="14" android:targetSdkVersion="21" /> |
26 <instrumentation android:name="android.test.InstrumentationTestRunner" | 26 <instrumentation android:name="android.test.InstrumentationTestRunner" |
27 android:targetPackage="org.chromium.components.devtools_bridge.tests" | 27 android:targetPackage="org.chromium.components.devtools_bridge.tests" |
28 android:label="Tests for org.chromium.components.devtools_bridge"/> | 28 android:label="Tests for org.chromium.components.devtools_bridge"/> |
29 | 29 |
30 <uses-permission android:name="android.permission.RUN_INSTRUMENTATION" /> | 30 <uses-permission android:name="android.permission.RUN_INSTRUMENTATION" /> |
31 <uses-permission android:name="android.permission.INJECT_EVENTS" /> | 31 <uses-permission android:name="android.permission.INJECT_EVENTS" /> |
32 <uses-permission android:name="android.permission.INTERNET" /> | 32 <uses-permission android:name="android.permission.INTERNET" /> |
33 <uses-permission android:name="android.permission.USE_CREDENTIALS" /> | |
34 <uses-permission android:name="com.google.android.c2dm.permission.RECEIVE" /
> | |
35 | 33 |
36 <!-- For manual testing with Chrome Shell --> | 34 <!-- For manual testing with Chrome Shell --> |
37 <uses-permission android:name="org.chromium.chrome.shell.permission.DEBUG" /
> | 35 <uses-permission android:name="org.chromium.chrome.shell.permission.DEBUG" /
> |
38 | 36 |
39 <!-- For manual testing with Clankium --> | 37 <!-- For manual testing with Clankium --> |
40 <uses-permission android:name="com.google.android.apps.chrome.permission.DEB
UG" /> | 38 <uses-permission android:name="com.google.android.apps.chrome.permission.DEB
UG" /> |
41 </manifest> | 39 </manifest> |
OLD | NEW |