blob: 7298f1408eecbbbe6139a7c379126b9ed7c48386 [file] [log] [blame]
Bob Badour8a6a2bc2021-02-12 17:07:05 -08001package {
2 // See: http://go/android-license-faq
3 // A large-scale-change added 'default_applicable_licenses' to import
4 // all of the 'license_kinds' from "frameworks_base_license"
5 // to get the below license kinds:
6 // SPDX-license-identifier-Apache-2.0
7 default_applicable_licenses: ["frameworks_base_license"],
8}
9
Anton Hanssone3d44e82021-04-12 18:14:30 +010010// Defaults for platform code that runs inside system_server
11java_defaults {
12 name: "platform_service_defaults",
13 plugins: ["error_prone_android_framework"],
14 errorprone: {
15 javacflags: [
Anton Hanssone3d44e82021-04-12 18:14:30 +010016 "-Xep:AndroidFrameworkCompatChange:ERROR",
17 // "-Xep:AndroidFrameworkUid:ERROR",
Michael Wright010aa302022-02-04 17:12:47 +000018 "-Xep:SelfEquals:ERROR",
Michael Wright2e7197c2022-02-04 19:00:44 +000019 "-Xep:NullTernary:ERROR",
Michael Wright5c975952022-02-04 20:08:57 +000020 "-Xep:TryFailThrowable:ERROR",
Michael Wright400ea882022-02-04 20:45:04 +000021 "-Xep:HashtableContains:ERROR",
Michael Wrightc92adae2022-02-04 20:49:14 +000022 "-Xep:FormatString:ERROR",
Michael Wright16451b02022-02-04 20:59:26 +000023 "-Xep:ArrayHashCode:ERROR",
Michael Wright573d22a2022-02-04 21:02:33 +000024 "-Xep:SelfAssignment:ERROR",
Michael Wright3cc84d02022-02-04 21:05:45 +000025 "-Xep:ArrayEquals:ERROR",
Michael Wright684f5a52022-02-04 21:41:04 +000026 "-Xep:IdentityBinaryExpression:ERROR",
Anton Hanssone3d44e82021-04-12 18:14:30 +010027 // NOTE: only enable to generate local patchfiles
28 // "-XepPatchChecks:refaster:frameworks/base/errorprone/refaster/EfficientXml.java.refaster",
29 // "-XepPatchLocation:/tmp/refaster/",
30 ],
31 },
Azhara Assanovaa131ad92021-06-11 09:53:48 +000032 lint: {
33 extra_check_modules: ["AndroidFrameworkLintChecker"],
34 },
Anton Hanssone3d44e82021-04-12 18:14:30 +010035}
36
Jared Dukefb64d442023-09-22 16:49:22 +000037// Config to control optimizing and shrinking the services target using R8.
38// Set via `export SYSTEM_OPTIMIZE_JAVA=true|false`, or explicitly in Make via the
Jared Duke4514bdf2021-11-18 13:18:21 -080039// `SOONG_CONFIG_ANDROID_SYSTEM_OPTIMIZE_JAVA` variable.
Jared Duke4514bdf2021-11-18 13:18:21 -080040soong_config_module_type {
41 name: "system_optimized_java_defaults",
42 module_type: "java_defaults",
43 config_namespace: "ANDROID",
tyiu39a05ed2023-10-04 17:54:32 +000044 bool_variables: [
45 "SYSTEM_OPTIMIZE_JAVA",
46 "FULL_SYSTEM_OPTIMIZE_JAVA",
47 ],
Jared Dukefb64d442023-09-22 16:49:22 +000048 properties: [
49 "optimize",
50 "dxflags",
51 ],
Jared Duke4514bdf2021-11-18 13:18:21 -080052}
53
54system_optimized_java_defaults {
55 name: "services_java_defaults",
56 soong_config_variables: {
57 SYSTEM_OPTIMIZE_JAVA: {
58 optimize: {
59 enabled: true,
Jared Dukeea03d102022-02-15 13:57:06 -080060 // TODO(b/210510433): Enable optimizations after improving
61 // retracing infra.
tyiu39a05ed2023-10-04 17:54:32 +000062 // See also FULL_SYSTEM_OPTIMIZE_JAVA.
Jared Dukeea03d102022-02-15 13:57:06 -080063 optimize: false,
Jared Duke4514bdf2021-11-18 13:18:21 -080064 shrink: true,
Jared Duke06689ad2022-09-07 12:24:36 -070065 ignore_warnings: false,
Jared Duke76919e82023-10-25 21:46:36 +000066 proguard_compatibility: false,
Jared Duke6cf7fbd2023-05-19 20:21:36 +000067 proguard_flags_files: [
68 "proguard.flags",
69 // Ensure classes referenced in the framework-res manifest
70 // and implemented in system_server are kept.
71 ":framework-res{.aapt.proguardOptionsFile}",
72 ],
Jared Duke4514bdf2021-11-18 13:18:21 -080073 },
Hai Zhang3070d7c2022-11-11 21:48:44 -080074 conditions_default: {
75 optimize: {
76 enabled: true,
77 optimize: false,
78 shrink: true,
79 ignore_warnings: false,
80 // Note that this proguard config is very conservative, only shrinking the
81 // permission subpackage to prune unused jarjar'ed Kotlin dependencies.
82 proguard_flags_files: ["proguard_permission.flags"],
83 },
Jared Dukefb64d442023-09-22 16:49:22 +000084 // Explicitly configure R8 to preserve debug info, as this path should
85 // really only allow stripping of permission-specific code and deps.
86 dxflags: ["--debug"],
Hai Zhang3070d7c2022-11-11 21:48:44 -080087 },
Jared Duke4514bdf2021-11-18 13:18:21 -080088 },
tyiu39a05ed2023-10-04 17:54:32 +000089 // Allow form factors to opt-in full system java optimization
90 FULL_SYSTEM_OPTIMIZE_JAVA: {
91 optimize: {
92 optimize: true,
93 },
94 },
Jared Duke4514bdf2021-11-18 13:18:21 -080095 },
96}
97
Jiyong Parkbae2e902019-11-17 13:11:19 +090098filegroup {
99 name: "services-main-sources",
Colin Cross33b78ef2021-03-26 10:31:25 -0700100 srcs: [
101 "java/**/*.java",
102 "java/**/package.html",
103 ],
Jiyong Parkbae2e902019-11-17 13:11:19 +0900104 path: "java",
105 visibility: ["//visibility:private"],
106}
107
108filegroup {
Andrei Onea43114702021-02-10 20:53:12 +0000109 name: "services-non-updatable-sources",
Jiyong Parkbae2e902019-11-17 13:11:19 +0900110 srcs: [
Jihoon Kangfcc577c2024-08-02 18:57:13 +0000111 ":incremental_aidl",
112 ":services.core-aidl-sources",
Jiyong Parkbae2e902019-11-17 13:11:19 +0900113 ":services.core-sources",
Hongwei Wangcdcb68d2020-11-23 12:48:05 -0800114 ":services.core-sources-am-wm",
Colin Cross33b78ef2021-03-26 10:31:25 -0700115 "core/java/com/android/server/am/package.html",
Jiyong Parkbae2e902019-11-17 13:11:19 +0900116 ":services.accessibility-sources",
117 ":services.appprediction-sources",
118 ":services.appwidget-sources",
119 ":services.autofill-sources",
120 ":services.backup-sources",
121 ":services.companion-sources",
122 ":services.contentcapture-sources",
Oluwarotimi Adesinaa326f0b2024-08-05 18:28:16 +0000123 ":services.appfunctions-sources",
Jiyong Parkbae2e902019-11-17 13:11:19 +0900124 ":services.contentsuggestions-sources",
Shashwat Razdan6ef76562024-03-07 13:26:12 -0800125 ":services.contextualsearch-sources",
Jiyong Parkbae2e902019-11-17 13:11:19 +0900126 ":services.coverage-sources",
Helen Qin20ff3552022-09-13 15:47:24 +0000127 ":services.credentials-sources",
Jiyong Parkbae2e902019-11-17 13:11:19 +0900128 ":services.devicepolicy-sources",
129 ":services.midi-sources",
Nick Moukhinecf47bdd2020-08-19 16:29:18 +0200130 ":services.musicsearch-sources",
Jiyong Parkbae2e902019-11-17 13:11:19 +0900131 ":services.net-sources",
Hai Zhang3070d7c2022-11-11 21:48:44 -0800132 ":services.permission-sources",
Jiyong Parkbae2e902019-11-17 13:11:19 +0900133 ":services.print-sources",
Yi Kong86f85932020-06-29 20:03:55 +0800134 ":services.profcollect-sources",
Jiyong Parkbae2e902019-11-17 13:11:19 +0900135 ":services.restrictions-sources",
Hyunyoung Song21e60a92020-11-20 20:27:54 -0800136 ":services.searchui-sources",
Shashwat Razdand33e8c32021-01-29 13:02:19 -0800137 ":services.smartspace-sources",
Atneya Nair0d4726f2023-04-07 15:36:29 -0700138 ":services.soundtrigger-sources",
Roman Kalukiewicz8beaf2c2024-08-02 17:34:31 -0700139 ":services.supervision-sources",
Jiyong Parkbae2e902019-11-17 13:11:19 +0900140 ":services.systemcaptions-sources",
Adam He2653f232020-11-30 18:23:20 -0800141 ":services.translation-sources",
Alex Agranovich50c987f2021-02-18 09:19:33 +0000142 ":services.texttospeech-sources",
Jiyong Parkbae2e902019-11-17 13:11:19 +0900143 ":services.usage-sources",
144 ":services.usb-sources",
145 ":services.voiceinteraction-sources",
Sharon Sua5afd372022-02-01 22:09:36 +0000146 ":services.wallpapereffectsgeneration-sources",
Roshan Piusea33fb92020-02-20 12:49:45 -0800147 ":services.wifi-sources",
TYM Tsaiabf72bd2023-11-21 07:12:21 +0000148 ":framework-pm-common-shared-srcs",
Andrei Onea43114702021-02-10 20:53:12 +0000149 ],
150 visibility: ["//visibility:private"],
151}
152
Felipe Lemefec71a72021-04-01 23:32:53 -0700153java_library {
154 name: "Slogf",
155 srcs: ["core/java/com/android/server/utils/Slogf.java"],
156}
157
“Shadmanae41b3a2024-01-31 04:30:31 +0000158soong_config_module_type {
159 name: "art_profile_java_defaults",
160 module_type: "java_defaults",
161 config_namespace: "art_profile",
162 variables: ["services_profile_path"],
163 properties: ["dex_preopt"],
164}
165
166soong_config_string_variable {
167 name: "services_profile_path",
168 values: ["art_wear_profile"],
169}
170
171art_profile_java_defaults {
172 name: "art_profile_java_defaults",
173 soong_config_variables: {
174 services_profile_path: {
175 art_wear_profile: {
176 dex_preopt: {
177 app_image: true,
178 profile: "art-wear-profile",
179 },
180 },
181 conditions_default: {
182 dex_preopt: {
183 app_image: true,
184 profile: "art-profile",
185 },
186 },
187 },
188 },
189}
190
Harshit Mahajana2ff65b2024-10-07 15:14:41 +0000191// Conditionally add crashrecovery stubs library
192soong_config_module_type {
193 name: "crashrecovery_java_defaults",
194 module_type: "java_defaults",
195 config_namespace: "ANDROID",
196 bool_variables: [
197 "release_crashrecovery_module",
198 ],
199 properties: [
200 "libs",
201 ],
202}
203
204crashrecovery_java_defaults {
205 name: "services_crashrecovery_stubs_conditionally",
206 soong_config_variables: {
207 release_crashrecovery_module: {
208 libs: ["service-crashrecovery.stubs.system_server"],
209 },
210 },
211}
212
Sandeep Bandaru46f44ce2024-11-26 18:44:20 +0000213soong_config_module_type {
214 name: "ondeviceintelligence_module_java_defaults",
215 module_type: "java_defaults",
216 config_namespace: "ANDROID",
217 bool_variables: [
218 "release_ondevice_intelligence_module",
219 "release_ondevice_intelligence_platform",
220 ],
221 properties: [
222 "libs",
223 "srcs",
224 "static_libs",
225 ],
226}
227
228// Conditionally add ondeviceintelligence stubs library
229ondeviceintelligence_module_java_defaults {
230 name: "ondeviceintelligence_conditionally",
231 soong_config_variables: {
232 release_ondevice_intelligence_module: {
233 libs: ["service-ondeviceintelligence.stubs.system_server"],
234 },
235 release_ondevice_intelligence_platform: {
sandeepbandaru34def812024-12-11 17:19:25 +0000236 srcs: [":service-ondeviceintelligence-sources-platform"],
Sandeep Bandaru46f44ce2024-11-26 18:44:20 +0000237 },
238 },
239}
240
Colin Crosseb652a42017-12-05 09:46:29 -0800241// merge all required services into one jar
242// ============================================================
Ray China750fad2024-07-11 17:42:10 +0800243soong_config_module_type {
244 name: "system_java_library",
245 module_type: "java_library",
246 config_namespace: "system_services",
247 bool_variables: ["without_vibrator"],
Kiyoung Kimc5d4fe22024-10-15 07:39:02 +0000248 properties: ["vintf_fragment_modules"],
249}
250
251vintf_fragment {
252 name: "manifest_services.xml",
253 src: "manifest_services.xml",
254}
255
256vintf_fragment {
257 name: "manifest_services_android.frameworks.vibrator.xml",
258 src: "manifest_services_android.frameworks.vibrator.xml",
Ray China750fad2024-07-11 17:42:10 +0800259}
260
261system_java_library {
Colin Crosseb652a42017-12-05 09:46:29 -0800262 name: "services",
“Shadmanae41b3a2024-01-31 04:30:31 +0000263 defaults: [
264 "services_java_defaults",
265 "art_profile_java_defaults",
Harshit Mahajana2ff65b2024-10-07 15:14:41 +0000266 "services_crashrecovery_stubs_conditionally",
Sandeep Bandaru46f44ce2024-11-26 18:44:20 +0000267 "ondeviceintelligence_conditionally",
“Shadmanae41b3a2024-01-31 04:30:31 +0000268 ],
Colin Crossa12c0f52018-06-27 11:00:11 -0700269 installable: true,
Colin Crosseb652a42017-12-05 09:46:29 -0800270
Hai Zhang3070d7c2022-11-11 21:48:44 -0800271 exclude_kotlinc_generated_files: true,
Colin Crosseb652a42017-12-05 09:46:29 -0800272
Jiyong Parkbae2e902019-11-17 13:11:19 +0900273 srcs: [":services-main-sources"],
Colin Crosseb652a42017-12-05 09:46:29 -0800274
275 // The convention is to name each service module 'services.$(module_name)'
276 static_libs: [
Colin Cross4c0b06b2017-12-12 19:43:04 -0800277 "services.core",
Colin Crosseb652a42017-12-05 09:46:29 -0800278 "services.accessibility",
Sunny Goyal54e91342018-11-14 11:59:02 -0800279 "services.appprediction",
Colin Crosseb652a42017-12-05 09:46:29 -0800280 "services.appwidget",
281 "services.autofill",
282 "services.backup",
283 "services.companion",
Oluwarotimi Adesinaa326f0b2024-08-05 18:28:16 +0000284 "services.appfunctions",
Felipe Leme749b8892018-12-03 16:30:30 -0800285 "services.contentcapture",
Winson Chung3fb0f252019-01-08 17:41:55 -0800286 "services.contentsuggestions",
Shashwat Razdan6ef76562024-03-07 13:26:12 -0800287 "services.contextualsearch",
Colin Crosseb652a42017-12-05 09:46:29 -0800288 "services.coverage",
Helen Qin20ff3552022-09-13 15:47:24 +0000289 "services.credentials",
Colin Crosseb652a42017-12-05 09:46:29 -0800290 "services.devicepolicy",
Dave Mankoff0c72a322023-07-12 19:32:11 +0000291 "services.flags",
Colin Crosseb652a42017-12-05 09:46:29 -0800292 "services.midi",
Nick Moukhinecf47bdd2020-08-19 16:29:18 +0200293 "services.musicsearch",
Colin Crosseb652a42017-12-05 09:46:29 -0800294 "services.net",
Danning Chen20b32ed2019-12-18 16:52:03 -0800295 "services.people",
Hai Zhang3070d7c2022-11-11 21:48:44 -0800296 "services.permission",
Colin Crosseb652a42017-12-05 09:46:29 -0800297 "services.print",
Yi Kong86f85932020-06-29 20:03:55 +0800298 "services.profcollect",
Colin Crosseb652a42017-12-05 09:46:29 -0800299 "services.restrictions",
Hyunyoung Song21e60a92020-11-20 20:27:54 -0800300 "services.searchui",
Shashwat Razdand33e8c32021-01-29 13:02:19 -0800301 "services.smartspace",
Atneya Nair0d4726f2023-04-07 15:36:29 -0700302 "services.soundtrigger",
Roman Kalukiewicz8beaf2c2024-08-02 17:34:31 -0700303 "services.supervision",
Robert Berrye14120e2019-03-18 16:33:42 -0400304 "services.systemcaptions",
Adam He2653f232020-11-30 18:23:20 -0800305 "services.translation",
Alex Agranovich50c987f2021-02-18 09:19:33 +0000306 "services.texttospeech",
Colin Crosseb652a42017-12-05 09:46:29 -0800307 "services.usage",
308 "services.usb",
309 "services.voiceinteraction",
Sharon Sua5afd372022-02-01 22:09:36 +0000310 "services.wallpapereffectsgeneration",
Roshan Piusea33fb92020-02-20 12:49:45 -0800311 "services.wifi",
Dmitri Plotnikov4eaac3a2020-05-04 17:00:16 -0700312 "service-blobstore",
313 "service-jobscheduler",
Yan Yanbf64cbc2024-09-21 01:09:17 +0000314 "service-connectivity-b-pre-jarjar", // Move it to mainline module
Colin Crosseb652a42017-12-05 09:46:29 -0800315 "android.hidl.base-V1.0-java",
316 ],
317
318 libs: [
319 "android.hidl.manager-V1.0-java",
Paul Duffinabebc6a2020-05-31 11:35:50 +0100320 "framework-tethering.stubs.module_lib",
Jared Duke5123eb32024-03-29 22:52:57 +0000321 "keepanno-annotations",
Chris Wailes09724a72021-02-08 10:00:13 -0800322 "service-art.stubs.system_server",
Jared Duke06689ad2022-09-07 12:24:36 -0700323 "service-permission.stubs.system_server",
Seth Moore0277b662022-10-20 14:14:39 -0700324 "service-rkp.stubs.system_server",
Jared Duke06689ad2022-09-07 12:24:36 -0700325 "service-sdksandbox.stubs.system_server",
Colin Crosseb652a42017-12-05 09:46:29 -0800326 ],
327
Ray China750fad2024-07-11 17:42:10 +0800328 soong_config_variables: {
329 without_vibrator: {
Kiyoung Kimc5d4fe22024-10-15 07:39:02 +0000330 vintf_fragment_modules: [
Ray China750fad2024-07-11 17:42:10 +0800331 "manifest_services.xml",
332 ],
333 conditions_default: {
Kiyoung Kimc5d4fe22024-10-15 07:39:02 +0000334 vintf_fragment_modules: [
Ray China750fad2024-07-11 17:42:10 +0800335 "manifest_services.xml",
336 "manifest_services_android.frameworks.vibrator.xml",
337 ],
338 },
339 },
340 },
Brian Julianeba77a82023-02-01 14:13:45 +0000341
Raphael Kim82701132023-02-15 22:40:07 -0800342 required: [
343 "libukey2_jni_shared",
Jiyong Park20d61792024-03-18 18:05:15 +0900344 "protolog.conf.json.gz",
Jiyong Parkd80202c2024-03-26 12:44:42 +0900345 "core.protolog.pb",
Raphael Kim82701132023-02-15 22:40:07 -0800346 ],
Cole Faust596fe0f2024-01-04 09:37:47 -0800347 lint: {
348 baseline_filename: "lint-baseline.xml",
349 },
Raphael Kim82701132023-02-15 22:40:07 -0800350
Colin Crosseb652a42017-12-05 09:46:29 -0800351 // Uncomment to enable output of certain warnings (deprecated, unchecked)
352 //javacflags: ["-Xlint"],
Colin Crosseb652a42017-12-05 09:46:29 -0800353}
354
Colin Cross3a7d8992017-12-05 17:33:58 -0800355// native library
356// =============================================================
357
358cc_library_shared {
359 name: "libandroid_servers",
360 defaults: ["libservices.core-libs"],
361 whole_static_libs: ["libservices.core"],
362}
atrost86895aa2019-08-19 16:51:15 +0100363
364platform_compat_config {
365 name: "services-platform-compat-config",
atrost86895aa2019-08-19 16:51:15 +0100366 src: ":services",
367}
Ulya Trafimovich0d1b063d62019-12-03 11:59:51 +0000368
369filegroup {
370 name: "art-profile",
371 srcs: ["art-profile"],
372}
Jiyong Parkabc72e42019-11-17 15:17:53 +0900373
374// API stub
375// =============================================================
376
Jihoon Kang2d295ae2024-03-21 23:57:14 +0000377soong_config_module_type_import {
378 from: "frameworks/base/api/Android.bp",
379 module_types: ["non_updatable_exportable_droidstubs"],
380}
381
Andrei Onea43114702021-02-10 20:53:12 +0000382stubs_defaults {
383 name: "services-stubs-default",
Jiyong Parkabc72e42019-11-17 15:17:53 +0900384 installable: false,
Anton Hansson84a0e712023-10-23 09:17:45 +0000385 flags: [
386 "--show-annotation android.annotation.SystemApi\\(client=android.annotation.SystemApi.Client.SYSTEM_SERVER\\)",
387 "--hide-annotation android.annotation.Hide",
388 "--hide InternalClasses", // com.android.* classes are okay in this interface
Anton Hanssonf74130f2020-02-19 18:29:12 +0000389 // TODO: remove the --hide options below
Anton Hansson84a0e712023-10-23 09:17:45 +0000390 "--hide DeprecationMismatch",
391 "--hide HiddenTypedefConstant",
392 ],
Andrei Oneafaa271a2021-03-17 13:32:51 +0000393 visibility: ["//frameworks/base:__subpackages__"],
Felipe Lemed3895b62021-03-24 16:55:27 -0700394 filter_packages: ["com.android."],
Andrei Onea43114702021-02-10 20:53:12 +0000395}
396
Jihoon Kang2d295ae2024-03-21 23:57:14 +0000397non_updatable_exportable_droidstubs {
Andrei Oneafaa271a2021-03-17 13:32:51 +0000398 name: "services-non-updatable-stubs",
Andrei Onea43114702021-02-10 20:53:12 +0000399 srcs: [":services-non-updatable-sources"],
Jihoon Kang2d295ae2024-03-21 23:57:14 +0000400 defaults: [
401 "services-stubs-default",
402 ],
Andrei Onea43114702021-02-10 20:53:12 +0000403 check_api: {
404 current: {
Andrei Onea8168dc22021-04-30 12:52:36 +0000405 api_file: "api/current.txt",
406 removed_api_file: "api/removed.txt",
Andrei Onea43114702021-02-10 20:53:12 +0000407 },
408 api_lint: {
409 enabled: true,
410 new_since: ":android-non-updatable.api.system-server.latest",
Andrei Onea8168dc22021-04-30 12:52:36 +0000411 baseline_file: "api/lint-baseline.txt",
Andrei Onea43114702021-02-10 20:53:12 +0000412 },
413 },
Jihoon Kang2d295ae2024-03-21 23:57:14 +0000414 soong_config_variables: {
415 release_hidden_api_exportable_stubs: {
416 dists: [
417 {
Jihoon Kang00f480e2024-04-10 18:55:36 +0000418 targets: ["sdk"],
419 dir: "apistubs/android/system-server/api",
420 dest: "android-non-updatable.txt",
Jihoon Kang2d295ae2024-03-21 23:57:14 +0000421 tag: ".exportable.api.txt",
422 },
423 {
Jihoon Kang00f480e2024-04-10 18:55:36 +0000424 targets: ["sdk"],
425 dir: "apistubs/android/system-server/api",
426 dest: "android-non-updatable-removed.txt",
Jihoon Kang2d295ae2024-03-21 23:57:14 +0000427 tag: ".exportable.removed-api.txt",
428 },
429 ],
430 conditions_default: {
431 dists: [
432 {
Jihoon Kang00f480e2024-04-10 18:55:36 +0000433 targets: ["sdk"],
434 dir: "apistubs/android/system-server/api",
435 dest: "android-non-updatable.txt",
Jihoon Kang2d295ae2024-03-21 23:57:14 +0000436 tag: ".api.txt",
437 },
438 {
Jihoon Kang00f480e2024-04-10 18:55:36 +0000439 targets: ["sdk"],
440 dir: "apistubs/android/system-server/api",
441 dest: "android-non-updatable-removed.txt",
Jihoon Kang2d295ae2024-03-21 23:57:14 +0000442 tag: ".removed-api.txt",
443 },
444 ],
445 },
446 },
447 },
Jihoon Kang866b9b7a2023-09-20 22:28:05 +0000448 api_surface: "system-server",
Jihoon Kangfcc577c2024-08-02 18:57:13 +0000449 sdk_version: "module_current",
450 libs: [
451 "framework-annotations-lib",
452 ],
Felipe Lemed3895b62021-03-24 16:55:27 -0700453}