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 { cc_fuzz {
name: "avc_dec_fuzzer", name: "avc_dec_fuzzer",
host_supported:true, host_supported: true,
srcs: [ srcs: [
"avc_dec_fuzzer.cpp", "avc_dec_fuzzer.cpp",
], ],
static_libs: ["libavcdec"], static_libs: [
shared_libs: ["liblog"], "libavcdec",
"liblog",
],
} }