summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHarish Mahendrakar <harish.mahendrakar@ittiam.com>2019-09-09 10:23:26 -0700
committerHarish Mahendrakar <harish.mahendrakar@ittiam.com>2019-09-09 10:23:26 -0700
commitf32771b5603d62f5102f1cd3427461382ffdc7a5 (patch)
treeb9dbb784c18e6b2d720ebfdc57598e10b9da324a
parent2caf20ff25c090341965cc88b7f31f129e806a3a (diff)
downloadlibmpeg2-f32771b5603d62f5102f1cd3427461382ffdc7a5.tar.gz
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: Ie3bf9ee178faa58f6c8495f6469d4702034feb79
-rw-r--r--fuzzer/Android.bp5
-rw-r--r--test/Android.bp5
2 files changed, 10 insertions, 0 deletions
diff --git a/fuzzer/Android.bp b/fuzzer/Android.bp
index d3772a4..4250ec5 100644
--- a/fuzzer/Android.bp
+++ b/fuzzer/Android.bp
@@ -8,4 +8,9 @@ cc_fuzz {
"libmpeg2dec",
"liblog",
],
+ target: {
+ darwin: {
+ enabled: false,
+ },
+ },
}
diff --git a/test/Android.bp b/test/Android.bp
index f95a947..b8325c3 100644
--- a/test/Android.bp
+++ b/test/Android.bp
@@ -13,4 +13,9 @@ cc_test {
srcs: ["decoder/main.c"],
static_libs: ["libmpeg2dec"],
shared_libs: ["liblog"],
+ target: {
+ darwin: {
+ enabled: false,
+ },
+ },
}