Android: Disable "treat warnings as errors".

This commit is contained in:
Adam Serbinski 2020-02-05 20:27:43 -05:00 committed by Bjorn Andersson
parent 33bf949e4f
commit 47e48a8d93

View File

@ -6,7 +6,7 @@ cc_library {
"lib/qrtr.c",
"lib/qmi.c",
],
cflags: ["-fPIC"],
cflags: ["-fPIC", "-Wno-error"],
export_include_dirs: ["lib"],
local_include_dirs: ["src"],
}
@ -23,6 +23,7 @@ cc_binary {
"src/waiter.c",
"src/util.c",
],
cflags: ["-Wno-error"],
local_include_dirs: ["lib"],
}
@ -34,6 +35,7 @@ cc_binary {
"src/addr.c",
"src/cfg.c",
],
cflags: ["-Wno-error"],
local_include_dirs: ["lib"],
}
@ -45,5 +47,6 @@ cc_binary {
"src/lookup.c",
"src/util.c",
],
cflags: ["-Wno-error"],
local_include_dirs: ["lib"],
}