Making liblog static in libhevc fuzzer

Bug: 140244193
Test: SANITIZE_HOST=address make haiku-host and then running binary
Change-Id: Icd687c2e8c6bb6809d79a4f94b3ff8cb575820c6
This commit is contained in:
hamzeh 2019-08-29 11:40:00 -07:00 committed by Mitch Phillips
parent cdd7c97c27
commit 01fd4fac0e

View file

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