diff options
Diffstat (limited to 'runtime/openjdkjvmti/Android.bp')
| -rw-r--r-- | runtime/openjdkjvmti/Android.bp | 18 |
1 files changed, 16 insertions, 2 deletions
diff --git a/runtime/openjdkjvmti/Android.bp b/runtime/openjdkjvmti/Android.bp index c01e3f4152..e38f265c5a 100644 --- a/runtime/openjdkjvmti/Android.bp +++ b/runtime/openjdkjvmti/Android.bp @@ -13,11 +13,18 @@ // See the License for the specific language governing permissions and // limitations under the License. +cc_library_headers { + name: "libopenjdkjvmti_headers", + host_supported: true, + export_include_dirs: ["include"], +} + cc_defaults { name: "libopenjdkjvmti_defaults", defaults: ["art_defaults"], host_supported: true, srcs: ["events.cc", + "fixed_up_dex_file.cc", "object_tagging.cc", "OpenjdkJvmTi.cc", "ti_class.cc", @@ -40,6 +47,7 @@ cc_defaults { "ti_timers.cc", "transform.cc"], include_dirs: ["art/runtime"], + header_libs: ["libopenjdkjvmti_headers"], shared_libs: [ "libbase", "libnativehelper", @@ -49,7 +57,10 @@ cc_defaults { art_cc_library { name: "libopenjdkjvmti", defaults: ["libopenjdkjvmti_defaults"], - shared_libs: ["libart"], + shared_libs: [ + "libart", + "libart-compiler", + ], } art_cc_library { @@ -58,5 +69,8 @@ art_cc_library { "art_debug_defaults", "libopenjdkjvmti_defaults", ], - shared_libs: ["libartd"], + shared_libs: [ + "libartd", + "libartd-compiler", + ], } |