blob: e8acff739e527cfe9a7d6b23f40ec97547e3918a [file] [log] [blame]
Bob Badourd5949582021-02-23 13:18:34 -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
Suprabh Shukla1baab8c2020-07-08 19:41:24 -070010cc_library_shared {
11 name: "libalarm_jni",
12
13 cpp_std: "c++2a",
14 cflags: [
15 "-Wall",
16 "-Werror",
17 "-Wno-unused-parameter",
18 "-Wthread-safety",
19 ],
20
21 srcs: [
22 "com_android_server_alarm_AlarmManagerService.cpp",
23 "onload.cpp",
24 ],
25
26 shared_libs: [
Ryo Hashimotoee7ee8f2021-03-22 19:13:55 +090027 "libnativehelper",
28 "liblog",
29 "libbase",
Suprabh Shukla1baab8c2020-07-08 19:41:24 -070030 ],
Jeongik Cha0431bac2024-04-05 19:40:20 +090031 visibility: [
32 "//frameworks/base/apex:__subpackages__",
33 "//visibility:any_system_partition",
34 ],
Suprabh Shukla1baab8c2020-07-08 19:41:24 -070035}