diff options
author | 2021-05-20 20:24:35 +0100 | |
---|---|---|
committer | 2021-05-21 19:20:53 +0000 | |
commit | a40f5cd17a8815df1fa8a1d9f8caf2b26ef43753 (patch) | |
tree | 0e4515da2a5cc2873d0ac62e3c88138e47938660 /libartservice/Android.bp | |
parent | a9f80fcd2e2aca477eab7c0e9a6fce1f9537633a (diff) |
Add systemserverclasspath_fragment.
Note that the contents of the fragment are added as dependencies to an
apex, so there is no need to duplicate them in java_libs.
Bug: 180105615
Test: atest CtsClasspathsTestCases
Change-Id: Ie4732ee602983047859b29b939585a3f716d5bdc
Merged-In: Ie4732ee602983047859b29b939585a3f716d5bdc
Diffstat (limited to 'libartservice/Android.bp')
-rw-r--r-- | libartservice/Android.bp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libartservice/Android.bp b/libartservice/Android.bp index 8b7d980923..5390fb2a4b 100644 --- a/libartservice/Android.bp +++ b/libartservice/Android.bp @@ -82,6 +82,11 @@ java_sdk_library { // running "m update-api" will give instructions on what to do next unsafe_ignore_missing_latest_api: true, + // This cannot be accessed by apps using <uses-library> in their manifest. + shared_library: false, + // TODO(b/188773212): force dex compilation for inclusion in bootclasspath_fragment. + compile_dex: true, + srcs: [ "service/java/com/android/server/art/ArtManagerLocal.java", ], |