diff options
| author | 2020-02-05 18:12:14 -0800 | |
|---|---|---|
| committer | 2020-02-05 18:26:00 -0800 | |
| commit | e5edf8cc33fc5a9e2fbcd955b7ed30dd80ba6f82 (patch) | |
| tree | c982e73366b0f9ec58496c08ecef93fc109fe2ac | |
| parent | 62693835202c9b90284762d634db11351141042e (diff) | |
libstatsmetadata to static, liblog to shared
Library clean up as a part of statsd becoming a module
Bug: 145565901
Test: compiles
Change-Id: I48e919307f3a9933a9e5ce00da3804f582a44557
| -rw-r--r-- | cmds/statsd/Android.bp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cmds/statsd/Android.bp b/cmds/statsd/Android.bp index 2237bf2b2acb..5df932fc3dd4 100644 --- a/cmds/statsd/Android.bp +++ b/cmds/statsd/Android.bp @@ -121,9 +121,9 @@ cc_defaults { "android.frameworks.stats@1.0", "libbase", "libcutils", - "liblog", "libprotoutil", "libstatslog", + "libstatsmetadata", "libstatssocket", "libsysutils", ], @@ -132,8 +132,8 @@ cc_defaults { "libgraphicsenv", "libhidlbase", "libincident", + "liblog", "libservices", - "libstatsmetadata", "libutils", ], } @@ -160,7 +160,7 @@ genrule { ], } -cc_library_shared { +cc_library_static { name: "libstatsmetadata", host_supported: true, generated_sources: [ |