From b7d92c4b96cebae6a60f5256c9173e46f325e860 Mon Sep 17 00:00:00 2001 From: Jiyong Park Date: Wed, 23 Aug 2017 13:25:21 +0900 Subject: [PATCH] libbacktrace is not directly available to vendors This lib becomes VNDK-SP just because libutils, which is VNDK-SP, is depending on it. Since libutils provide android::CallStack class for collecting and printing the callstack, there is no need for vendors to use the internal libbacktrace library. Thus the lib is marked as vendor_available: false. Bug: 64730695 Test: build 2017 pixel device Change-Id: I4ad91e3a6747bb0ae88d32cd26dfba32239c5b93 --- libbacktrace/Android.bp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libbacktrace/Android.bp b/libbacktrace/Android.bp index 2f2068407..3c8a3c0d1 100644 --- a/libbacktrace/Android.bp +++ b/libbacktrace/Android.bp @@ -65,7 +65,7 @@ cc_library_headers { cc_library { name: "libbacktrace", - vendor_available: true, + vendor_available: false, vndk: { enabled: true, support_system_process: true,