From 254fce450a377e6920f63ae0c19f177570b65978 Mon Sep 17 00:00:00 2001 From: Steven Moreland Date: Thu, 5 Nov 2020 16:16:45 +0000 Subject: [PATCH] libstatslog (libbinder) users disable on darwin libbinder doesn't support mac. Bug: 172023026 Test: N/A Change-Id: Ib39fa195b9313d9d75ce903f2a871a5110abde68 --- build/Android.bp | 6 ++++++ profile/avrcp/Android.bp | 5 +++++ 2 files changed, 11 insertions(+) diff --git a/build/Android.bp b/build/Android.bp index b04090d68..809091f88 100644 --- a/build/Android.bp +++ b/build/Android.bp @@ -91,6 +91,12 @@ fluoride_defaults { static_libs: [ "libbluetooth_gd", ], + target: { + darwin: { + // libstatslog -> libbinder doesn't build on mac + enabled: false, + }, + }, } // Enables code coverage for a set of source files. Must be combined with diff --git a/profile/avrcp/Android.bp b/profile/avrcp/Android.bp index 7c97e869b..6f8ce4066 100644 --- a/profile/avrcp/Android.bp +++ b/profile/avrcp/Android.bp @@ -98,4 +98,9 @@ cc_fuzz { corpus: [ "tests/avrcp_device_fuzz/corpus/*", ], + target: { + darwin: { + enabled: false, + }, + }, } -- 2.11.0