blob: 053208313b00b0f2a4a342386cd9d139398047e2 [file] [log] [blame]
cc_defaults {
name: "incident_helper_defaults",
cflags: [
"-Wall",
"-Werror",
"-g",
"-O0"
],
srcs: [
"IncidentHelper.cpp",
"ih_util.cpp",
],
shared_libs: [
"libbase",
"liblog",
"libprotobuf-cpp-full",
"libutils",
],
static_libs: [
"libplatformprotos",
],
}
cc_binary {
name: "incident_helper",
defaults: ["incident_helper_defaults"],
srcs: ["main.cpp"],
}
cc_test {
name: "incident_helper_test",
defaults: ["incident_helper_defaults"],
srcs: [
"tests/IncidentHelper_test.cpp",
"tests/ih_util_test.cpp",
],
data: [
"testdata/*",
],
static_libs: [
"libgmock",
],
}