blob: 7332d2d8b0f6973ad164b35d59b79ea1aa4c47b9 [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
Jiyong Parkbae2e902019-11-17 13:11:19 +090010filegroup {
11 name: "services.voiceinteraction-sources",
12 srcs: ["java/**/*.java"],
13 path: "java",
14 visibility: ["//frameworks/base/services"],
15}
16
Colin Crosse0b2ee52017-12-05 09:46:29 -080017java_library_static {
18 name: "services.voiceinteraction",
Jeff Sharkeyd23b5372020-10-23 14:30:42 -060019 defaults: ["platform_service_defaults"],
Jiyong Parkbae2e902019-11-17 13:11:19 +090020 srcs: [":services.voiceinteraction-sources"],
Joanne Chung02ccd622021-09-16 00:12:22 +080021 libs: [
22 "services.core",
Nicholas Ambur59c08f62023-01-31 02:02:50 +000023 "app-compat-annotations",
Joanne Chung02ccd622021-09-16 00:12:22 +080024 "android.hardware.power-V1-java",
25 "android.hardware.power-V1.0-java",
26 ],
Colin Crosse0b2ee52017-12-05 09:46:29 -080027}