summaryrefslogtreecommitdiff
path: root/build/apex/art_apex_test.py
diff options
context:
space:
mode:
author Chris Wailes <chriswailes@google.com> 2021-01-12 16:37:57 -0800
committer Christian Wailes <chriswailes@google.com> 2021-02-04 07:28:21 +0000
commit2c5cb269e6aadbb47d3b004236dcfeb7e49cb318 (patch)
tree13a036ba56083e457663d66f7cbd4e5039f136f2 /build/apex/art_apex_test.py
parentcee78a711c53b3aafc20be38195c13824b5037b3 (diff)
Initial layout of ART Service files
This CL contains the initial scaffolding for the ART Service project. This contains a Java Language library for loading into the System Server and two native support libraries. At this moment these libraries contain simple "Hello World" stubs. Test: Build each of the libraries Test: art/build/apex/runtests.sh Bug: 177273468 Change-Id: I597ce336a9ddc14d7b407efef7c1e34f5a4a46ae
Diffstat (limited to 'build/apex/art_apex_test.py')
-rwxr-xr-xbuild/apex/art_apex_test.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/build/apex/art_apex_test.py b/build/apex/art_apex_test.py
index 498ee95c9e..fbe62232e7 100755
--- a/build/apex/art_apex_test.py
+++ b/build/apex/art_apex_test.py
@@ -540,6 +540,8 @@ class ReleaseChecker:
self._checker.check_native_library('libart-disassembler')
self._checker.check_native_library('libartbase')
self._checker.check_native_library('libartpalette')
+ self._checker.check_native_library('libartservice')
+ self._checker.check_native_library('libarttools')
self._checker.check_native_library('libdexfile')
self._checker.check_native_library('libdexfile_support')
self._checker.check_native_library('libdt_fd_forward')
@@ -548,6 +550,9 @@ class ReleaseChecker:
self._checker.check_native_library('libprofile')
self._checker.check_native_library('libsigchain')
+ # Check internal Java libraries
+ self._checker.check_java_library("artservice")
+
# Check java libraries for Managed Core Library.
self._checker.check_java_library('apache-xml')
self._checker.check_java_library('bouncycastle')