platform_system_core/libvndksupport/Android.bp
Chih-Hung Hsieh 122352d983 Use -Werror in system/core
* Move -Wall -Werror from cppflags to cflags.
* Fix/suppress warning on unused variables.

Bug: 66996870
Test: build with WITH_TIDY=1
Change-Id: I1e05e96a1d0bcb2ccef1ce456504b3af57167cc5
2017-11-01 11:32:55 -07:00

16 lines
366 B
Text

subdirs = ["tests"]
cc_library {
name: "libvndksupport",
srcs: ["linker.c"],
cflags: ["-Wall", "-Werror"],
local_include_dirs: ["include/vndksupport"],
export_include_dirs: ["include"],
shared_libs: ["liblog"],
}
llndk_library {
name: "libvndksupport",
symbol_file: "libvndksupport.map.txt",
export_include_dirs: ["include"],
}