2f5513decb
Change-Id: I58c74f01d75e8616fdb03c27e3dc4c4df6838faa
21 lines
368 B
Plaintext
21 lines
368 B
Plaintext
Common_CFlags = ["-Wall"]
|
|
Common_CFlags += ["-Werror"]
|
|
|
|
cc_library_shared {
|
|
name: "libqtivibratoreffect.xiaomi",
|
|
vendor: true,
|
|
cflags: Common_CFlags,
|
|
srcs: [
|
|
"effect.cpp",
|
|
],
|
|
shared_libs: [
|
|
"libbase",
|
|
"libcutils",
|
|
"libutils",
|
|
],
|
|
static_libs: [
|
|
"libc++fs",
|
|
],
|
|
export_include_dirs: ["."]
|
|
}
|