diff options
| -rw-r--r-- | runtime/Android.bp | 4 | ||||
| -rw-r--r-- | runtime/thread_android.cc | 2 |
2 files changed, 2 insertions, 4 deletions
diff --git a/runtime/Android.bp b/runtime/Android.bp index a3081e9122..b89eb02ff0 100644 --- a/runtime/Android.bp +++ b/runtime/Android.bp @@ -396,10 +396,8 @@ libart_cc_defaults { "libnativeloader", "libbacktrace", "liblog", - // For atrace, properties, ashmem. + // For atrace, properties, ashmem, set_sched_policy. "libcutils", - // For set_sched_policy. - "libprocessgroup", // For common macros. "libbase", ], diff --git a/runtime/thread_android.cc b/runtime/thread_android.cc index 24864f9542..8ff6c529b0 100644 --- a/runtime/thread_android.cc +++ b/runtime/thread_android.cc @@ -21,7 +21,7 @@ #include <sys/resource.h> #include <sys/time.h> -#include <processgroup/sched_policy.h> +#include <cutils/sched_policy.h> #include <utils/threads.h> #include "base/macros.h" |