Explicitly add python-numpy dependency to install-build-deps.
[chromium-blink-merge.git] / components / devtools_bridge / android / javatests / AndroidManifest.xml
blob4c4650498b9a820eddc2fe95701ec7f3789a96c7
1 <?xml version="1.0" encoding="utf-8"?>
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
4        in the LICENSE file. -->
5   <!-- package name must be unique so suffix with "tests" so package loader
6        doesn't ignore this. -->
7   <manifest xmlns:android="http://schemas.android.com/apk/res/android"
8       package="org.chromium.components.devtools_bridge.tests">
9     <application
10             android:name=".TestApplication">
11         <uses-library android:name="android.test.runner" />
12         <service
13                 android:name=".DebugService" >
14         </service>
15         <service
16                 android:name="org.chromium.components.devtools_bridge.DevToolsBridgeServerSandbox$Service" />
17         <service
18                 android:name="org.chromium.components.devtools_bridge.GCDHostService" />
19         <activity
20                 android:name=".DebugActivity"
21                 android:label="DevToolsBridge tests" >
22             <intent-filter>
23                 <action android:name="android.intent.action.MAIN" />
24                 <category android:name="android.intent.category.LAUNCHER" />
25             </intent-filter>
26         </activity>
27         <receiver
28                 android:name="org.chromium.components.devtools_bridge.GCDHostService$Receiver"
29                 android:permission="com.google.android.c2dm.permission.SEND" >
30             <intent-filter>
31                 <action android:name="com.google.android.c2dm.intent.RECEIVE" />
32                 <category android:name="org.chromium.components.devtools_bridge.tests" />
33             </intent-filter>
34             <intent-filter>
35                 <action android:name="com.google.android.c2dm.intent.REGISTRATION" />
36                 <category android:name="org.chromium.components.devtools_bridge.tests" />
37             </intent-filter>
38         </receiver>
39     </application>
40     <uses-sdk android:minSdkVersion="14" android:targetSdkVersion="21" />
41     <instrumentation android:name="android.test.InstrumentationTestRunner"
42             android:targetPackage="org.chromium.components.devtools_bridge.tests"
43             android:label="Tests for org.chromium.components.devtools_bridge"/>
45     <permission
46             android:name="org.chromium.components.devtools_bridge.tests.permission.C2D_MESSAGE"
47             android:protectionLevel="signature" />
49     <uses-permission android:name="android.permission.RUN_INSTRUMENTATION" />
50     <uses-permission android:name="android.permission.INJECT_EVENTS" />
51     <uses-permission android:name="android.permission.INTERNET" />
52     <uses-permission android:name="android.permission.USE_CREDENTIALS" />
53     <uses-permission android:name="android.permission.WAKE_LOCK" />
54     <uses-permission android:name="com.google.android.c2dm.permission.RECEIVE" />
55     <uses-permission
56             android:name="org.chromium.components.devtools_bridge.tests.permission.C2D_MESSAGE" />
58     <!-- For manual testing with Chrome Shell -->
59     <uses-permission android:name="org.chromium.chrome.shell.permission.DEBUG" />
61     <!-- For manual testing with Clankium -->
62     <uses-permission android:name="com.google.android.apps.chrome.permission.DEBUG" />
63 </manifest>