1package {
2    default_applicable_licenses: ["device_google_atv_license"],
3}
4
5cc_binary {
6    name: "blur_sysprop_notifier",
7    system_ext_specific: true,
8
9    srcs: ["blur_sysprop_notifier.cpp"],
10
11    init_rc: ["blur_sysprop_notifier.rc"],
12
13    shared_libs: [
14        "libcutils",
15        "libutils",
16        "libbinder",
17    ],
18
19    cflags: [
20        "-Wall",
21        "-Werror",
22    ],
23}
24