frameworks/native/services/fileinotify/Android.bp

26 lines
442 B
Plaintext
Raw Normal View History

2025-08-25 08:17:13 +08:00
//aidl service
cc_binary {
name: "fileserviced",
srcs: [
"FileInotify_M.cpp",
],
include_dirs: ["frameworks/native"],
shared_libs: [
"libbinder",
"libutils",
"libcutils",
"liblog",
],
cflags: [
"-Wno-unreachable-code",
"-Wno-unused-variable",
"-Wno-format-security",
"-Wno-unused-parameter",
],
init_rc: ["fileservice.rc"],
}