From 6bbc91b375cc9aa24d9df13c8ba27414374c61fc Mon Sep 17 00:00:00 2001 From: Mitch Phillips Date: Mon, 21 Oct 2019 13:32:14 -0700 Subject: Make libstatslog static-linkage compatible. libstatslog is a blocker for some fuzzing. Our continuous fuzzing infrastructure requires a statically-linked binary, and things depend on libstatslog down the chain. We should allow libstatslog to be linked statically. Bug: N/A Test: m libstatslog Change-Id: Ic742a90daf6cbb5d197784416626256bfb6182b7 --- tools/stats_log_api_gen/Android.bp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/stats_log_api_gen/Android.bp b/tools/stats_log_api_gen/Android.bp index 4ce4406211ce..c08f9b04f0df 100644 --- a/tools/stats_log_api_gen/Android.bp +++ b/tools/stats_log_api_gen/Android.bp @@ -95,7 +95,7 @@ genrule { ], } -cc_library_shared { +cc_library { name: "libstatslog", host_supported: true, generated_sources: ["statslog.cpp"], -- cgit v1.2.3-59-g8ed1b