blob: 00fd249f562431f7effd1909acd175fb46a5060f [file] [log] [blame]
Bob Badour3c538232021-02-12 21:26:48 -08001package {
2 default_applicable_licenses: ["frameworks_native_cmds_service_license"],
3}
4
5// Added automatically by a large-scale-change
6// See: http://go/android-license-faq
7license {
8 name: "frameworks_native_cmds_service_license",
9 visibility: [":__subpackages__"],
10 license_kinds: [
11 "SPDX-license-identifier-Apache-2.0",
12 ],
13 license_text: [
14 "NOTICE",
15 ],
16}
17
Dan Willemsene05dc6d2016-07-25 17:13:45 -070018cc_binary {
19 name: "service",
20
21 srcs: ["service.cpp"],
22
23 shared_libs: [
Marco Nelissenb9ec70e2018-06-07 11:31:03 -070024 "libcutils",
Dan Willemsene05dc6d2016-07-25 17:13:45 -070025 "libutils",
26 "libbinder",
27 ],
28
Chih-Hung Hsieh734e3782017-10-05 13:44:13 -070029 cflags: [
Chih-Hung Hsieh734e3782017-10-05 13:44:13 -070030 "-Wall",
31 "-Werror",
32 ],
Martijn Coenen3def1f22017-04-07 10:46:57 -070033}
34
35cc_binary {
36 name: "vndservice",
37
38 proprietary: true,
39 srcs: ["service.cpp"],
40
41 shared_libs: [
Marco Nelissenb9ec70e2018-06-07 11:31:03 -070042 "libcutils",
Martijn Coenen3def1f22017-04-07 10:46:57 -070043 "libutils",
44 "libbinder",
45 ],
46
Chih-Hung Hsieh734e3782017-10-05 13:44:13 -070047 cflags: [
Chih-Hung Hsieh734e3782017-10-05 13:44:13 -070048 "-DVENDORSERVICES",
49 "-Wall",
50 "-Werror",
51 ],
Dan Willemsene05dc6d2016-07-25 17:13:45 -070052}
Yifan Hong86cf0532021-06-16 22:56:50 -070053
54cc_binary_host {
55 name: "aservice",
56
57 srcs: ["service.cpp"],
58
59 shared_libs: [
60 "libcutils",
61 "libutils",
62 "libbinder",
63 ],
64
65 cflags: [
Yifan Hong86cf0532021-06-16 22:56:50 -070066 "-Wall",
67 "-Werror",
68 ],
69}