• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1package {
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
18cc_binary {
19    name: "service",
20
21    srcs: ["service.cpp"],
22
23    shared_libs: [
24        "libcutils",
25        "libutils",
26        "libbinder",
27    ],
28
29    cflags: [
30        "-DXP_UNIX",
31        "-Wall",
32        "-Werror",
33    ],
34}
35
36cc_binary {
37    name: "vndservice",
38
39    proprietary: true,
40    srcs: ["service.cpp"],
41
42    shared_libs: [
43        "libcutils",
44        "libutils",
45        "libbinder",
46    ],
47
48    cflags: [
49        "-DXP_UNIX",
50        "-DVENDORSERVICES",
51        "-Wall",
52        "-Werror",
53    ],
54}
55