xref: /aosp_15_r20/external/cronet/test_runner/AndroidManifest.xml (revision 6777b5387eb2ff775bb5750e3f5d96f37fb7352b)
1*6777b538SAndroid Build Coastguard Worker<?xml version="1.0" encoding="utf-8"?>
2*6777b538SAndroid Build Coastguard Worker<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3*6777b538SAndroid Build Coastguard Worker    package="org.chromium.native_test"
4*6777b538SAndroid Build Coastguard Worker    android:versionCode="1"
5*6777b538SAndroid Build Coastguard Worker    android:versionName="1.0" >
6*6777b538SAndroid Build Coastguard Worker
7*6777b538SAndroid Build Coastguard Worker  <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
8*6777b538SAndroid Build Coastguard Worker  <uses-permission android:name="android.permission.BLUETOOTH" />
9*6777b538SAndroid Build Coastguard Worker  <uses-permission android:name="android.permission.BLUETOOTH_ADMIN" />
10*6777b538SAndroid Build Coastguard Worker  <uses-permission android:name="android.permission.CHANGE_CONFIGURATION" />
11*6777b538SAndroid Build Coastguard Worker  <uses-permission android:name="android.permission.CAMERA" />
12*6777b538SAndroid Build Coastguard Worker  <uses-permission android:name="android.permission.INTERNET" />
13*6777b538SAndroid Build Coastguard Worker  <uses-permission android:name="android.permission.MANAGE_EXTERNAL_STORAGE" />
14*6777b538SAndroid Build Coastguard Worker  <uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS" />
15*6777b538SAndroid Build Coastguard Worker  <uses-permission android:name="android.permission.RECORD_AUDIO" />
16*6777b538SAndroid Build Coastguard Worker  <uses-permission android:name="android.permission.SET_TIME_ZONE" />
17*6777b538SAndroid Build Coastguard Worker  <uses-permission android:name="android.permission.WAKE_LOCK" />
18*6777b538SAndroid Build Coastguard Worker  <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
19*6777b538SAndroid Build Coastguard Worker
20*6777b538SAndroid Build Coastguard Worker  <instrumentation
21*6777b538SAndroid Build Coastguard Worker      android:name="org.chromium.build.gtest_apk.NativeTestInstrumentationTestRunner"
22*6777b538SAndroid Build Coastguard Worker      chromium-junit3="true"
23*6777b538SAndroid Build Coastguard Worker      android:label="Instrumentation entry point for org.chromium.native_test"
24*6777b538SAndroid Build Coastguard Worker      android:targetPackage="org.chromium.native_test" />
25*6777b538SAndroid Build Coastguard Worker
26*6777b538SAndroid Build Coastguard Worker  <uses-permission android:name="android.permission.READ_PHONE_STATE" />
27*6777b538SAndroid Build Coastguard Worker  <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
28*6777b538SAndroid Build Coastguard Worker
29*6777b538SAndroid Build Coastguard Worker  <application
30*6777b538SAndroid Build Coastguard Worker      android:name="org.chromium.native_test.NativeTestApplication"
31*6777b538SAndroid Build Coastguard Worker      android:label="NativeTests"
32*6777b538SAndroid Build Coastguard Worker      android:memtagMode="sync"
33*6777b538SAndroid Build Coastguard Worker      android:requestLegacyExternalStorage="true" >
34*6777b538SAndroid Build Coastguard Worker    <uses-library android:name="android.test.runner" />
35*6777b538SAndroid Build Coastguard Worker
36*6777b538SAndroid Build Coastguard Worker    <activity
37*6777b538SAndroid Build Coastguard Worker        android:name="org.chromium.native_test.NativeUnitTestActivity"
38*6777b538SAndroid Build Coastguard Worker        android:configChanges="orientation|keyboardHidden"
39*6777b538SAndroid Build Coastguard Worker        android:exported="true"
40*6777b538SAndroid Build Coastguard Worker        android:label="NativeTest"
41*6777b538SAndroid Build Coastguard Worker        android:process=":test_process" >
42*6777b538SAndroid Build Coastguard Worker      <intent-filter>
43*6777b538SAndroid Build Coastguard Worker        <action android:name="android.intent.action.MAIN" />
44*6777b538SAndroid Build Coastguard Worker
45*6777b538SAndroid Build Coastguard Worker        <category android:name="android.intent.category.LAUNCHER" />
46*6777b538SAndroid Build Coastguard Worker      </intent-filter>
47*6777b538SAndroid Build Coastguard Worker    </activity>
48*6777b538SAndroid Build Coastguard Worker
49*6777b538SAndroid Build Coastguard Worker    <meta-data
50*6777b538SAndroid Build Coastguard Worker        android:name="org.chromium.native_test.NUM_TEST_CLIENT_SERVICES"
51*6777b538SAndroid Build Coastguard Worker        android:value="10" />
52*6777b538SAndroid Build Coastguard Worker
53*6777b538SAndroid Build Coastguard Worker    <service
54*6777b538SAndroid Build Coastguard Worker        android:name="org.chromium.base.MultiprocessTestClientService0"
55*6777b538SAndroid Build Coastguard Worker        android:exported="false"
56*6777b538SAndroid Build Coastguard Worker        android:isolatedProcess="false"
57*6777b538SAndroid Build Coastguard Worker        android:process=":test_client_process0" />
58*6777b538SAndroid Build Coastguard Worker    <service
59*6777b538SAndroid Build Coastguard Worker        android:name="org.chromium.base.MultiprocessTestClientService1"
60*6777b538SAndroid Build Coastguard Worker        android:exported="false"
61*6777b538SAndroid Build Coastguard Worker        android:isolatedProcess="false"
62*6777b538SAndroid Build Coastguard Worker        android:process=":test_client_process1" />
63*6777b538SAndroid Build Coastguard Worker    <service
64*6777b538SAndroid Build Coastguard Worker        android:name="org.chromium.base.MultiprocessTestClientService2"
65*6777b538SAndroid Build Coastguard Worker        android:exported="false"
66*6777b538SAndroid Build Coastguard Worker        android:isolatedProcess="false"
67*6777b538SAndroid Build Coastguard Worker        android:process=":test_client_process2" />
68*6777b538SAndroid Build Coastguard Worker    <service
69*6777b538SAndroid Build Coastguard Worker        android:name="org.chromium.base.MultiprocessTestClientService3"
70*6777b538SAndroid Build Coastguard Worker        android:exported="false"
71*6777b538SAndroid Build Coastguard Worker        android:isolatedProcess="false"
72*6777b538SAndroid Build Coastguard Worker        android:process=":test_client_process3" />
73*6777b538SAndroid Build Coastguard Worker    <service
74*6777b538SAndroid Build Coastguard Worker        android:name="org.chromium.base.MultiprocessTestClientService4"
75*6777b538SAndroid Build Coastguard Worker        android:exported="false"
76*6777b538SAndroid Build Coastguard Worker        android:isolatedProcess="false"
77*6777b538SAndroid Build Coastguard Worker        android:process=":test_client_process4" />
78*6777b538SAndroid Build Coastguard Worker    <service
79*6777b538SAndroid Build Coastguard Worker        android:name="org.chromium.base.MultiprocessTestClientService5"
80*6777b538SAndroid Build Coastguard Worker        android:exported="false"
81*6777b538SAndroid Build Coastguard Worker        android:isolatedProcess="false"
82*6777b538SAndroid Build Coastguard Worker        android:process=":test_client_process5" />
83*6777b538SAndroid Build Coastguard Worker    <service
84*6777b538SAndroid Build Coastguard Worker        android:name="org.chromium.base.MultiprocessTestClientService6"
85*6777b538SAndroid Build Coastguard Worker        android:exported="false"
86*6777b538SAndroid Build Coastguard Worker        android:isolatedProcess="false"
87*6777b538SAndroid Build Coastguard Worker        android:process=":test_client_process6" />
88*6777b538SAndroid Build Coastguard Worker    <service
89*6777b538SAndroid Build Coastguard Worker        android:name="org.chromium.base.MultiprocessTestClientService7"
90*6777b538SAndroid Build Coastguard Worker        android:exported="false"
91*6777b538SAndroid Build Coastguard Worker        android:isolatedProcess="false"
92*6777b538SAndroid Build Coastguard Worker        android:process=":test_client_process7" />
93*6777b538SAndroid Build Coastguard Worker    <service
94*6777b538SAndroid Build Coastguard Worker        android:name="org.chromium.base.MultiprocessTestClientService8"
95*6777b538SAndroid Build Coastguard Worker        android:exported="false"
96*6777b538SAndroid Build Coastguard Worker        android:isolatedProcess="false"
97*6777b538SAndroid Build Coastguard Worker        android:process=":test_client_process8" />
98*6777b538SAndroid Build Coastguard Worker    <service
99*6777b538SAndroid Build Coastguard Worker        android:name="org.chromium.base.MultiprocessTestClientService9"
100*6777b538SAndroid Build Coastguard Worker        android:exported="false"
101*6777b538SAndroid Build Coastguard Worker        android:isolatedProcess="false"
102*6777b538SAndroid Build Coastguard Worker        android:process=":test_client_process9" />
103*6777b538SAndroid Build Coastguard Worker
104*6777b538SAndroid Build Coastguard Worker    <uses-library
105*6777b538SAndroid Build Coastguard Worker        android:name="android.test.base"
106*6777b538SAndroid Build Coastguard Worker        android:required="false" />
107*6777b538SAndroid Build Coastguard Worker    <uses-library
108*6777b538SAndroid Build Coastguard Worker        android:name="android.test.mock"
109*6777b538SAndroid Build Coastguard Worker        android:required="false" />
110*6777b538SAndroid Build Coastguard Worker  </application>
111*6777b538SAndroid Build Coastguard Worker
112*6777b538SAndroid Build Coastguard Worker</manifest>