diff options
author | 2024-01-30 16:22:06 +0000 | |
---|---|---|
committer | 2024-02-01 03:42:11 +0000 | |
commit | b0540e871a4bddc2bc7fd2eba8d2911596bd9e5d (patch) | |
tree | 9bdd3441e7d398ec384f670326b67df093cefac9 | |
parent | 1f13c158cd73bbe026b38453e03b8b87f6d48ca1 (diff) |
Add profiling module to bootclasspath
Test: m, presubmit
Bug: 293957254
Change-Id: I50d024c167094dc559070f529a91af6e9cb49872
-rw-r--r-- | api/Android.bp | 1 | ||||
-rw-r--r-- | api/ApiDocs.bp | 1 | ||||
-rw-r--r-- | boot/Android.bp | 4 |
3 files changed, 6 insertions, 0 deletions
diff --git a/api/Android.bp b/api/Android.bp index b3b18b66e097..ef64a89a892d 100644 --- a/api/Android.bp +++ b/api/Android.bp @@ -115,6 +115,7 @@ combined_apis { "framework-pdf", "framework-permission", "framework-permission-s", + "framework-profiling", "framework-scheduling", "framework-sdkextensions", "framework-statsd", diff --git a/api/ApiDocs.bp b/api/ApiDocs.bp index 7ae3224e7500..7ee43191a80a 100644 --- a/api/ApiDocs.bp +++ b/api/ApiDocs.bp @@ -67,6 +67,7 @@ stubs_defaults { ":framework-ondevicepersonalization-sources", ":framework-permission-sources", ":framework-permission-s-sources", + ":framework-profiling-sources", ":framework-scheduling-sources", ":framework-sdkextensions-sources", ":framework-statsd-sources", diff --git a/boot/Android.bp b/boot/Android.bp index 228d060bf9cf..cdfa7c80bc93 100644 --- a/boot/Android.bp +++ b/boot/Android.bp @@ -122,6 +122,10 @@ custom_platform_bootclasspath { module: "com.android.permission-bootclasspath-fragment", }, { + apex: "com.android.profiling", + module: "com.android.profiling-bootclasspath-fragment", + }, + { apex: "com.android.scheduling", module: "com.android.scheduling-bootclasspath-fragment", }, |