Merge "Making liblog static in libavc fuzzer"

This commit is contained in:
Treehugger Robot 2019-08-30 15:57:42 +00:00 committed by Gerrit Code Review
commit f305433dd4

View file

@ -1,9 +1,11 @@
cc_fuzz {
name: "avc_dec_fuzzer",
host_supported:true,
host_supported: true,
srcs: [
"avc_dec_fuzzer.cpp",
],
static_libs: ["libavcdec"],
shared_libs: ["liblog"],
static_libs: [
"libavcdec",
"liblog",
],
}