Disable macOS build

There is no memalign on Darwin.
So disable the build for macOS till memalign is replaced with
an alternative.

Test: Review
Bug: 140696633

Change-Id: Icf36be19a8b6bd22cf2827e95d262020df5bdba0
This commit is contained in:
Harish Mahendrakar 2019-09-09 10:27:12 -07:00
parent d28f2210ee
commit 96bcc2c3e0
2 changed files with 10 additions and 0 deletions

View file

@ -412,6 +412,11 @@ cc_test {
],
srcs: ["test/decoder/main.c"],
static_libs: ["libhevcdec"],
target: {
darwin: {
enabled: false,
},
},
}
cc_library_static {

View file

@ -8,4 +8,9 @@ cc_fuzz {
"libhevcdec",
"liblog",
],
target: {
darwin: {
enabled: false,
},
},
}