2022-02-24 05:53:44 -05:00
|
|
|
Common_CFlags = ["-Wall"]
|
|
|
|
Common_CFlags += ["-Werror"]
|
|
|
|
|
|
|
|
cc_library_shared {
|
2022-02-24 05:54:56 -05:00
|
|
|
name: "libxiaomivibratoreffect",
|
2022-02-24 05:53:44 -05:00
|
|
|
vendor: true,
|
|
|
|
cflags: Common_CFlags,
|
|
|
|
srcs: ["effect.cpp"],
|
|
|
|
shared_libs: [
|
|
|
|
"libcutils",
|
2022-02-24 11:52:15 -05:00
|
|
|
"liblog",
|
2022-02-24 05:53:44 -05:00
|
|
|
"libutils",
|
|
|
|
],
|
|
|
|
export_include_dirs: ["."]
|
|
|
|
}
|