diff options
author | Alex Light <allight@google.com> | 2017-12-20 08:05:06 -0800 |
---|---|---|
committer | Alex Light <allight@google.com> | 2017-12-20 08:05:06 -0800 |
commit | c7547c3a52785f4a69675a88ec2a90696f26c75d (patch) | |
tree | deed392c9fb211948d7373cd8638f880d8721265 /adbconnection | |
parent | 3859966d5c0d4a2d98e6012b458ef0b7e218c9b4 (diff) |
Disable libraries using eventfd on darwin hosts.
The eventfd API is not supported on darwin/MacOS. Since these
libraries are not meant for host use we will simply not build them for
those platforms. The libraries disabled are libdt_fd_forward and
libadbconnection. Both of these libraries are used for debugging
support on device only so it should not be any real issue.
Test: None
Change-Id: Ia1b1efc50a0bd9427640edec322db5ebd37d92a2
Diffstat (limited to 'adbconnection')
-rw-r--r-- | adbconnection/Android.bp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/adbconnection/Android.bp b/adbconnection/Android.bp index b2f82dd97b..441b706556 100644 --- a/adbconnection/Android.bp +++ b/adbconnection/Android.bp @@ -37,6 +37,9 @@ cc_defaults { }, host: { }, + darwin: { + enabled: false, + }, }, header_libs: [ "libnativehelper_header_only", |