-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathAndroid.bp
166 lines (153 loc) · 5.13 KB
/
Android.bp
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
//
// Copyright (C) 2018 The Android Open Source Project
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
package {
default_applicable_licenses: ["Android-Apache-2.0"],
}
java_defaults {
name: "wifi-service-common",
defaults: ["wifi-module-sdk-version-defaults"],
errorprone: {
javacflags: ["-Xep:CheckReturnValue:ERROR"],
},
product_variables: {
pdk: {
enabled: false,
},
},
}
filegroup {
name: "wifi-service-srcs",
srcs: [
"java/**/*.java",
"java/**/*.logtags",
":framework-wifi-service-shared-srcs",
":net-utils-wifi-service-common-srcs",
":statslog-wifi-java-gen",
":coex-table-parser",
],
}
filegroup {
name: "wifi-service-BaseWifiService",
srcs: ["java/com/android/server/wifi/BaseWifiService.java"],
path: "java",
}
// pre-jarjar version of wifi-service that builds against pre-jarjar version of framework-wifi
java_library {
name: "wifi-service-pre-jarjar",
installable: false,
defaults: ["wifi-service-common"],
srcs: [ ":wifi-service-srcs" ],
// java_api_finder must accompany `srcs`
plugins: ["java_api_finder"],
sdk_version: "system_server_current",
lint: {
baseline_filename: "lint-baseline-pre-jarjar.xml",
strict_updatability_linting: true,
},
libs: [
"error_prone_annotations",
"jsr305",
"framework-annotations-lib",
// load the resources from the resources APK.
"ServiceWifiResources",
// need pre-jarjar symbols so that wifi-service can reference the original class names at
// compile time
"framework-wifi-pre-jarjar",
"framework-connectivity.stubs.module_lib",
"framework-statsd.stubs.module_lib",
"framework-tethering.stubs.module_lib",
"unsupportedappusage",
],
static_libs: [
"android.hardware.wifi-V1.0-java",
"android.hardware.wifi-V1.1-java",
"android.hardware.wifi-V1.2-java",
"android.hardware.wifi-V1.3-java",
"android.hardware.wifi-V1.4-java",
"android.hardware.wifi-V1.5-java",
"android.hardware.wifi.hostapd-V1.0-java",
"android.hardware.wifi.hostapd-V1.1-java",
"android.hardware.wifi.hostapd-V1.2-java",
"android.hardware.wifi.hostapd-V1.3-java",
"android.hardware.wifi.supplicant-V1.0-java",
"android.hardware.wifi.supplicant-V1.1-java",
"android.hardware.wifi.supplicant-V1.2-java",
"android.hardware.wifi.supplicant-V1.3-java",
"android.hardware.wifi.supplicant-V1.4-java",
"android.hidl.manager-V1.2-java",
"androidx.annotation_annotation",
"bouncycastle-unbundled",
"ksoap2",
// Note: libprotobuf-java-lite uses a few core platform APIs which
// does show up as @hide API usage. But, this can be safely ignored
// since the library uses reflection to ensure that the OS does provide
// the necessary core platform APIs.
"libprotobuf-java-lite",
"libnanohttpd",
"services.net-module-wifi",
"wifi-lite-protos",
"wifi-nano-protos",
],
}
// wifi-service static library
// ============================================================
java_library {
name: "service-wifi",
defaults: ["wifi-service-common"],
installable: true,
static_libs: ["wifi-service-pre-jarjar"],
// need to include `libs` so that Soong doesn't complain about missing classes after jarjaring
libs: [
"framework-wifi.impl",
],
sdk_version: "system_server_current",
jarjar_rules: ":wifi-jarjar-rules",
optimize: {
enabled: true,
shrink: true,
proguard_flags_files: ["proguard.flags"],
},
dex_preopt: {
enabled: false,
app_image: false,
},
visibility: [
"//frameworks/opt/net/wifi/service/apex",
"//frameworks/opt/net/wifi/tests/wifitests/apex",
"//packages/modules/Wifi/apex",
"//packages/modules/Wifi/service/tests/wifitests/apex",
],
apex_available: [
"com.android.wifi",
"test_com.android.wifi",
],
}
// Statsd auto-generated code
// ============================================================
genrule {
name: "statslog-wifi-java-gen",
tools: ["stats-log-api-gen"],
cmd: "$(location stats-log-api-gen) --java $(out) --module wifi " +
" --javaPackage com.android.server.wifi.proto --javaClass WifiStatsLog" +
" --minApiLevel 30",
out: ["com/android/server/wifi/proto/WifiStatsLog.java"],
}
// Prebuilt for the wifi.rc file.
prebuilt_etc {
name: "wifi.rc",
src: "wifi.rc",
sub_dir: "init"
}