From d33a2ee1720124d55734d6faf7086c5aba3cff57 Mon Sep 17 00:00:00 2001 From: Steven Moreland Date: Mon, 1 Apr 2019 15:01:53 -0700 Subject: [PATCH] libutilscallstack: removed from darwin libbacktrace only includes its Backtrace.cpp on the linux targets but not windows or darwin targets. So, both should be disabled. Previously, libutilscallstack was only ever a static library on these platforms. Since nothing provided the symbols, these targets couldn't have been used. Fixes: 129636352 Test: m Change-Id: I3f0b09e1d67c485b3ea57f58d1220d9516b326f2 --- libutils/Android.bp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/libutils/Android.bp b/libutils/Android.bp index 3e7d0bac1..4f194c702 100644 --- a/libutils/Android.bp +++ b/libutils/Android.bp @@ -183,6 +183,9 @@ cc_library { "ProcessCallStack.cpp", ], }, + darwin: { + enabled: false, + }, windows: { enabled: false, },