summaryrefslogtreecommitdiffstats
path: root/logcat
diff options
context:
space:
mode:
authorSuren Baghdasaryan <surenb@google.com>2019-01-25 05:32:52 +0000
committerSuren Baghdasaryan <surenb@google.com>2019-01-25 16:49:18 +0000
commit949107830044b8eaa58b7fca57bd0e0737646c1d (patch)
treea57411d663713e5d654d4456a94390979ee08f8c /logcat
parent1bd127b72ebcca808b1e8eba2ed9facd9991a210 (diff)
downloadsystem_core-949107830044b8eaa58b7fca57bd0e0737646c1d.tar.gz
system_core-949107830044b8eaa58b7fca57bd0e0737646c1d.tar.bz2
system_core-949107830044b8eaa58b7fca57bd0e0737646c1d.zip
DO NOT MERGE: Revert "Revert "Add dependencies on libprocessgroup for sched_policy users""
This reverts commit 1bef8c550c6c9118969a93f14d9c5933cb7b2811. Reason for revert: AOSP is fixed with new vendor image Change-Id: Ib341ac80e2f88c13a7815a490ea2d9422ebdf55f Signed-off-by: Suren Baghdasaryan <surenb@google.com>
Diffstat (limited to 'logcat')
-rw-r--r--logcat/Android.bp2
-rw-r--r--logcat/logcat.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/logcat/Android.bp b/logcat/Android.bp
index 0543aba73..5030b1563 100644
--- a/logcat/Android.bp
+++ b/logcat/Android.bp
@@ -24,8 +24,8 @@ cc_defaults {
],
shared_libs: [
"libbase",
- "libcutils",
"libpcrecpp",
+ "libprocessgroup",
],
static_libs: ["liblog"],
logtags: ["event.logtags"],
diff --git a/logcat/logcat.cpp b/logcat/logcat.cpp
index 87bc6ae84..15e07feef 100644
--- a/logcat/logcat.cpp
+++ b/logcat/logcat.cpp
@@ -49,11 +49,11 @@
#include <android-base/properties.h>
#include <android-base/stringprintf.h>
#include <android-base/strings.h>
-#include <cutils/sched_policy.h>
#include <cutils/sockets.h>
#include <log/event_tag_map.h>
#include <log/logprint.h>
#include <private/android_logger.h>
+#include <processgroup/sched_policy.h>
#include <system/thread_defs.h>
#include <pcrecpp.h>