1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
| // Build the Telecom service.
| android_app {
| name: "Telecom",
| libs: ["telephony-common"],
| srcs: [
| "src/**/*.java",
| "proto/**/*.proto",
| ],
| resource_dirs: ["res"],
| proto: {
| type: "nano",
| local_include_dirs: ["proto/"],
| output_params: ["optional_field_style=accessors"],
| },
| platform_apis: true,
| certificate: "platform",
| privileged: true,
| optimize: {
| proguard_flags_files: ["proguard.flags"],
| },
| defaults: ["SettingsLibDefaults"],
| }
|
| android_test {
| name: "TelecomUnitTests",
| static_libs: [
| "android-ex-camera2",
| "guava",
| "mockito-target-inline",
| "androidx.test.rules",
| "platform-test-annotations",
| "androidx.legacy_legacy-support-core-ui",
| "androidx.legacy_legacy-support-core-utils",
| "androidx.core_core",
| "androidx.fragment_fragment",
| ],
| srcs: [
| "tests/src/**/*.java",
| "src/**/*.java",
| "proto/**/*.proto",
| ],
| proto: {
| type: "nano",
| local_include_dirs: ["proto/"],
| output_params: ["optional_field_style=accessors"],
| },
| resource_dirs: [
| "tests/res",
| "res",
| ],
| libs: [
| "android.test.mock",
| "android.test.base",
| "android.test.runner",
| "telephony-common",
| ],
|
| jni_libs: ["libdexmakerjvmtiagent"],
|
| aaptflags: [
| "--auto-add-overlay",
| "--extra-packages",
| "com.android.server.telecom",
| ],
| manifest: "tests/AndroidManifest.xml",
| optimize: {
| enabled: false,
| },
| platform_apis: true,
| certificate: "platform",
| jacoco: {
| include_filter: ["com.android.server.telecom.*"],
| exclude_filter: ["com.android.server.telecom.tests.*"],
| },
| test_suites: ["device-tests"],
| defaults: ["SettingsLibDefaults"],
| }
|
|