122352d983
* Move -Wall -Werror from cppflags to cflags. * Fix/suppress warning on unused variables. Bug: 66996870 Test: build with WITH_TIDY=1 Change-Id: I1e05e96a1d0bcb2ccef1ce456504b3af57167cc5
16 lines
366 B
Text
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"],
|
|
}
|