diff options
author | Steven Moreland <smoreland@google.com> | 2019-09-18 12:58:11 -0700 |
---|---|---|
committer | Steven Moreland <smoreland@google.com> | 2019-09-20 11:27:59 -0700 |
commit | 598bda862477d34a2d46980e9f174f5a6d1ff774 (patch) | |
tree | 950292063632d40fa6f649fba0e317c155428c0c | |
parent | ff044e701f5f0e535edd602d46b770384ddb2750 (diff) |
Host users of libutils trace use libcutils.
Reducing device/host differences. This is now required since libutils
Trace.h always calls the libcutils functions, instead of before where
it only called these functions on device.
Bug: 124524556
Test: build & boot
Change-Id: Ic096ed7caf8ca59292b3427a16c4e2545d12dfd9
-rw-r--r-- | cmds/idmap2/Android.bp | 3 | ||||
-rw-r--r-- | startop/view_compiler/Android.bp | 1 |
2 files changed, 4 insertions, 0 deletions
diff --git a/cmds/idmap2/Android.bp b/cmds/idmap2/Android.bp index d4d587108a54..4c77ba402595 100644 --- a/cmds/idmap2/Android.bp +++ b/cmds/idmap2/Android.bp @@ -69,6 +69,7 @@ cc_library { static_libs: [ "libandroidfw", "libbase", + "libcutils", "libutils", "libziparchive", ], @@ -121,6 +122,7 @@ cc_test { static_libs: [ "libandroidfw", "libbase", + "libcutils", "libidmap2", "liblog", "libutils", @@ -163,6 +165,7 @@ cc_binary { static_libs: [ "libandroidfw", "libbase", + "libcutils", "libidmap2", "liblog", "libutils", diff --git a/startop/view_compiler/Android.bp b/startop/view_compiler/Android.bp index 4f6524e0528b..c380d291d573 100644 --- a/startop/view_compiler/Android.bp +++ b/startop/view_compiler/Android.bp @@ -25,6 +25,7 @@ cc_defaults { "slicer", ], static_libs: [ + "libcutils", "libtinyxml2", "liblog", "libutils", |