| // |
| // Copyright (C) 2016 The Android Open Source Project |
| // |
| // Licensed under the Apache License, Version 2.0 (the "License"); |
| // you may not use this file except in compliance with the License. |
| // You may obtain a copy of the License at |
| // |
| // http://www.apache.org/licenses/LICENSE-2.0 |
| // |
| // Unless required by applicable law or agreed to in writing, software |
| // distributed under the License is distributed on an "AS IS" BASIS, |
| // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| // See the License for the specific language governing permissions and |
| // limitations under the License. |
| // |
| |
| art_cc_defaults { |
| name: "art_test_defaults", |
| host_supported: true, |
| target: { |
| android_arm: { |
| relative_install_path: "art/arm", |
| }, |
| android_arm64: { |
| relative_install_path: "art/arm64", |
| }, |
| android_mips: { |
| relative_install_path: "art/mips", |
| }, |
| android_mips64: { |
| relative_install_path: "art/mips64", |
| }, |
| android_x86: { |
| relative_install_path: "art/x86", |
| }, |
| android_x86_64: { |
| relative_install_path: "art/x86_64", |
| }, |
| darwin: { |
| enabled: false, |
| }, |
| }, |
| cflags: [ |
| "-Wno-frame-larger-than=", |
| ], |
| } |
| |
| art_cc_defaults { |
| name: "art_gtest_defaults", |
| test_per_src: true, |
| // These really are gtests, but the gtest library comes from libart-gtest.so |
| gtest: false, |
| defaults: [ |
| "art_test_defaults", |
| "art_debug_defaults", |
| "art_defaults", |
| ], |
| |
| shared_libs: [ |
| "libartd", |
| "libartd-disassembler", |
| "libvixld-arm", |
| "libvixld-arm64", |
| "libart-gtest", |
| "libdexfiled", |
| "libprofiled", |
| "libartbased", |
| |
| "libbase", |
| "libicuuc", |
| "libicui18n", |
| "libnativehelper", |
| "libz", |
| ], |
| whole_static_libs: [ |
| "libsigchain", |
| ], |
| |
| target: { |
| linux: { |
| ldflags: [ |
| // Allow jni_compiler_test to find Java_MyClassNatives_bar |
| // within itself using dlopen(NULL, ...). |
| // Mac OS linker doesn't understand --export-dynamic. |
| "-Wl,--export-dynamic", |
| "-Wl,-u,Java_MyClassNatives_bar", |
| "-Wl,-u,Java_MyClassNatives_sbar", |
| ], |
| cflags: [ |
| // gtest issue |
| "-Wno-used-but-marked-unused", |
| "-Wno-deprecated", |
| "-Wno-missing-noreturn", |
| ], |
| }, |
| host: { |
| shared_libs: [ |
| "libziparchive", |
| ], |
| }, |
| android: { |
| shared_libs: [ |
| "liblog", |
| ], |
| }, |
| }, |
| } |
| |
| art_cc_defaults { |
| name: "libart-gtest-defaults", |
| host_supported: true, |
| defaults: [ |
| "art_debug_defaults", |
| "art_defaults", |
| ], |
| shared_libs: [ |
| "libartd", |
| "libartd-compiler", |
| "libdexfiled", |
| "libprofiled", |
| "libartbased", |
| ], |
| static_libs: [ |
| "libgtest", |
| ], |
| target: { |
| android32: { |
| cflags: ["-DART_TARGET_NATIVETEST_DIR=/data/nativetest/art"], |
| }, |
| android64: { |
| cflags: ["-DART_TARGET_NATIVETEST_DIR=/data/nativetest64/art"], |
| }, |
| linux: { |
| cflags: [ |
| // gtest issue |
| "-Wno-used-but-marked-unused", |
| "-Wno-deprecated", |
| "-Wno-missing-noreturn", |
| ], |
| }, |
| darwin: { |
| enabled: false, |
| }, |
| }, |
| } |
| |
| art_cc_library { |
| name: "libart-gtest", |
| host_supported: true, |
| whole_static_libs: [ |
| "libart-compiler-gtest", |
| "libart-runtime-gtest", |
| "libartbase-art-gtest", |
| "libgtest", |
| ], |
| shared_libs: [ |
| "libartd", |
| "libartd-compiler", |
| "libdexfiled", |
| "libprofiled", |
| "libartbased", |
| "libbase", |
| "libbacktrace", |
| ], |
| target: { |
| darwin: { |
| enabled: false, |
| }, |
| }, |
| } |
| |
| cc_defaults { |
| name: "libartagent-defaults", |
| defaults: [ |
| "art_test_defaults", |
| "art_defaults", |
| ], |
| shared_libs: [ |
| "libbacktrace", |
| "libbase", |
| "libnativehelper", |
| ], |
| } |
| |
| art_cc_test_library { |
| name: "libartagent", |
| srcs: ["900-hello-plugin/load_unload.cc"], |
| defaults: ["libartagent-defaults"], |
| shared_libs: [ |
| "libart", |
| "libdexfile", |
| "libprofile", |
| "libartbase", |
| ], |
| } |
| |
| art_cc_test_library { |
| name: "libartagentd", |
| srcs: ["900-hello-plugin/load_unload.cc"], |
| defaults: [ |
| "art_debug_defaults", |
| "libartagent-defaults", |
| ], |
| shared_libs: [ |
| "libartd", |
| "libdexfiled", |
| "libprofiled", |
| "libartbased", |
| ], |
| } |
| |
| art_cc_defaults { |
| name: "libtiagent-base-defaults", |
| defaults: [ |
| "art_test_defaults", |
| "art_defaults", |
| // Not derived from libartagent-defaults for NDK. |
| ], |
| srcs: [ |
| // These are the ART-independent parts. |
| "ti-agent/agent_common.cc", |
| "ti-agent/agent_startup.cc", |
| "ti-agent/jni_binder.cc", |
| "ti-agent/jvmti_helper.cc", |
| "ti-agent/test_env.cc", |
| "ti-agent/breakpoint_helper.cc", |
| "ti-agent/common_helper.cc", |
| "ti-agent/frame_pop_helper.cc", |
| "ti-agent/locals_helper.cc", |
| "ti-agent/monitors_helper.cc", |
| "ti-agent/redefinition_helper.cc", |
| "ti-agent/suspension_helper.cc", |
| "ti-agent/stack_trace_helper.cc", |
| "ti-agent/threads_helper.cc", |
| "ti-agent/trace_helper.cc", |
| "ti-agent/exceptions_helper.cc", |
| // This is the list of non-special OnLoad things and excludes BCI and anything that depends |
| // on ART internals. |
| "903-hello-tagging/tagging.cc", |
| "904-object-allocation/tracking.cc", |
| "905-object-free/tracking_free.cc", |
| "906-iterate-heap/iterate_heap.cc", |
| "907-get-loaded-classes/get_loaded_classes.cc", |
| "908-gc-start-finish/gc_callbacks.cc", |
| "910-methods/methods.cc", |
| "911-get-stack-trace/stack_trace.cc", |
| "912-classes/classes.cc", |
| "913-heaps/heaps.cc", |
| "918-fields/fields.cc", |
| "920-objects/objects.cc", |
| "922-properties/properties.cc", |
| "923-monitors/monitors.cc", |
| "924-threads/threads.cc", |
| "925-threadgroups/threadgroups.cc", |
| "927-timers/timers.cc", |
| "928-jni-table/jni_table.cc", |
| "929-search/search.cc", |
| "931-agent-thread/agent_thread.cc", |
| "933-misc-events/misc_events.cc", |
| "945-obsolete-native/obsolete_native.cc", |
| "983-source-transform-verify/source_transform.cc", |
| "984-obsolete-invoke/obsolete_invoke.cc", |
| "986-native-method-bind/native_bind.cc", |
| "987-agent-bind/agent_bind.cc", |
| "988-method-trace/trace_fib.cc", |
| "989-method-trace-throw/method_trace.cc", |
| "991-field-trace-2/field_trace.cc", |
| "992-source-data/source_file.cc", |
| "993-breakpoints/breakpoints.cc", |
| "996-breakpoint-obsolete/obsolete_breakpoints.cc", |
| "1900-track-alloc/alloc.cc", |
| "1901-get-bytecodes/bytecodes.cc", |
| "1905-suspend-native/native_suspend.cc", |
| "1908-suspend-native-resume-self/native_suspend_resume.cc", |
| "1909-per-agent-tls/agent_tls.cc", |
| "1914-get-local-instance/local_instance.cc", |
| "1919-vminit-thread-start-timing/vminit.cc", |
| "1920-suspend-native-monitor/native_suspend_monitor.cc", |
| "1921-suspend-native-recursive-monitor/native_suspend_recursive_monitor.cc", |
| "1922-owned-monitors-info/owned_monitors.cc", |
| "1924-frame-pop-toggle/frame_pop_toggle.cc", |
| "1926-missed-frame-pop/frame_pop_missed.cc", |
| "1927-exception-event/exception_event.cc", |
| "1930-monitor-info/monitor.cc", |
| "1932-monitor-events-misc/monitor_misc.cc", |
| "1934-jvmti-signal-thread/signal_threads.cc", |
| "1939-proxy-frames/local_instance.cc", |
| "1941-dispose-stress/dispose_stress.cc", |
| "1942-suspend-raw-monitor-exit/native_suspend_monitor.cc", |
| "1943-suspend-raw-monitor-wait/native_suspend_monitor.cc", |
| "1946-list-descriptors/descriptors.cc", |
| "1950-unprepared-transform/unprepared_transform.cc", |
| "1951-monitor-enter-no-suspend/raw_monitor.cc", |
| "1953-pop-frame/pop_frame.cc", |
| "1957-error-ext/lasterror.cc", |
| ], |
| // Use NDK-compatible headers for ctstiagent. |
| header_libs: [ |
| "libopenjdkjvmti_headers", |
| ], |
| include_dirs: ["art/test/ti-agent"], |
| } |
| |
| art_cc_defaults { |
| name: "libtiagent-defaults", |
| defaults: [ |
| "libtiagent-base-defaults", |
| "libartagent-defaults", |
| ], |
| srcs: [ |
| // This is to get the IsInterpreted native method. |
| "common/stack_inspect.cc", |
| "common/runtime_state.cc", |
| "ti-agent/common_load.cc", |
| // This includes the remaining test functions. We should try to refactor things to |
| // make this list smaller. |
| "901-hello-ti-agent/basics.cc", |
| "909-attach-agent/attach.cc", |
| "912-classes/classes_art.cc", |
| "936-search-onload/search_onload.cc", |
| "980-redefine-object/redef_object.cc", |
| "983-source-transform-verify/source_transform_art.cc", |
| "1940-ddms-ext/ddm_ext.cc", |
| "1944-sudden-exit/sudden_exit.cc", |
| // "1952-pop-frame-jit/pop_frame.cc", |
| ], |
| static_libs: [ |
| "libz", |
| "slicer", |
| ], |
| } |
| |
| art_cc_test_library { |
| name: "libtiagent", |
| defaults: ["libtiagent-defaults"], |
| shared_libs: [ |
| "libart", |
| "libdexfile", |
| "libprofile", |
| "libartbase", |
| ], |
| } |
| |
| art_cc_test_library { |
| name: "libtiagentd", |
| defaults: [ |
| "art_debug_defaults", |
| "libtiagent-defaults", |
| ], |
| shared_libs: [ |
| "libartd", |
| "libdexfiled", |
| "libprofiled", |
| "libartbased", |
| ], |
| } |
| |
| cc_library_static { |
| name: "libctstiagent", |
| defaults: ["libtiagent-base-defaults"], |
| host_supported: false, |
| srcs: [ |
| "983-source-transform-verify/source_transform_slicer.cc", |
| ], |
| whole_static_libs: [ |
| "slicer_ndk", |
| ], |
| static_libs: [ |
| "libbase_ndk", |
| ], |
| shared_libs: [ |
| "libz", // for slicer (using adler32). |
| ], |
| sdk_version: "current", |
| stl: "c++_static", |
| include_dirs: [ |
| // This is needed to resolve the base/ header file in libdexfile. Unfortunately there are |
| // many problems with how we export headers that are making doing this the 'right' way |
| // difficult. |
| // TODO: move those headers to art/ rather than under runtime. |
| "art/runtime", |
| // NDK headers aren't available in platform NDK builds. |
| "libnativehelper/include_jni", |
| ], |
| export_include_dirs: ["ti-agent"], |
| } |
| |
| art_cc_defaults { |
| name: "libtistress-srcs", |
| defaults: ["libartagent-defaults"], |
| srcs: [ |
| "ti-stress/stress.cc", |
| ], |
| header_libs: ["libopenjdkjvmti_headers"], |
| } |
| |
| art_cc_defaults { |
| name: "libtistress-defaults", |
| defaults: ["libtistress-srcs"], |
| shared_libs: [ |
| "libbase", |
| "slicer", |
| ], |
| } |
| |
| art_cc_test_library { |
| name: "libtistress", |
| defaults: ["libtistress-defaults"], |
| shared_libs: ["libartbase"], |
| } |
| |
| art_cc_test_library { |
| name: "libtistressd", |
| defaults: [ |
| "art_debug_defaults", |
| "libtistress-defaults", |
| ], |
| shared_libs: ["libartbased"], |
| } |
| |
| art_cc_defaults { |
| name: "libtistress-static-defaults", |
| defaults: [ |
| "libtistress-srcs", |
| "libart_static_defaults", |
| ], |
| static_libs: ["slicer"], |
| } |
| |
| art_cc_test_library { |
| name: "libtistresss", |
| defaults: ["libtistress-static-defaults"], |
| static_libs: ["libartbase"], |
| } |
| |
| art_cc_test_library { |
| name: "libtistressds", |
| defaults: [ |
| "art_debug_defaults", |
| "libtistress-static-defaults" |
| ], |
| static_libs: ["libartbased"], |
| } |
| |
| cc_defaults { |
| name: "libarttest-defaults", |
| defaults: [ |
| "art_test_defaults", |
| "art_defaults", |
| ], |
| srcs: [ |
| "004-JniTest/jni_test.cc", |
| "004-ReferenceMap/stack_walk_refmap_jni.cc", |
| "004-SignalTest/signaltest.cc", |
| "004-StackWalk/stack_walk_jni.cc", |
| "004-ThreadStress/thread_stress.cc", |
| "004-UnsafeTest/unsafe_test.cc", |
| "044-proxy/native_proxy.cc", |
| "051-thread/thread_test.cc", |
| "1337-gc-coverage/gc_coverage.cc", |
| "136-daemon-jni-shutdown/daemon_jni_shutdown.cc", |
| "137-cfi/cfi.cc", |
| "139-register-natives/regnative.cc", |
| "141-class-unload/jni_unload.cc", |
| "148-multithread-gc-annotations/gc_coverage.cc", |
| "149-suspend-all-stress/suspend_all.cc", |
| "154-gc-loop/heap_interface.cc", |
| "167-visit-locks/visit_locks.cc", |
| "169-threadgroup-jni/jni_daemon_thread.cc", |
| "172-app-image-twice/debug_print_class.cc", |
| "1945-proxy-method-arguments/get_args.cc", |
| "203-multi-checkpoint/multi_checkpoint.cc", |
| "305-other-fault-handler/fault_handler.cc", |
| "454-get-vreg/get_vreg_jni.cc", |
| "457-regs/regs_jni.cc", |
| "461-get-reference-vreg/get_reference_vreg_jni.cc", |
| "466-get-live-vreg/get_live_vreg_jni.cc", |
| "497-inlining-and-class-loader/clear_dex_cache.cc", |
| "543-env-long-ref/env_long_ref.cc", |
| "566-polymorphic-inlining/polymorphic_inline.cc", |
| "570-checker-osr/osr.cc", |
| "595-profile-saving/profile-saving.cc", |
| "596-app-images/app_images.cc", |
| "596-monitor-inflation/monitor_inflation.cc", |
| "597-deopt-new-string/deopt.cc", |
| "616-cha-unloading/cha_unload.cc", |
| "626-const-class-linking/clear_dex_cache_types.cc", |
| "642-fp-callees/fp_callees.cc", |
| "647-jni-get-field-id/get_field_id.cc", |
| "656-annotation-lookup-generic-jni/test.cc", |
| "661-oat-writer-layout/oat_writer_layout.cc", |
| "664-aget-verifier/aget-verifier.cc", |
| "667-jit-jni-stub/jit_jni_stub_test.cc", |
| "674-hiddenapi/hiddenapi.cc", |
| "708-jit-cache-churn/jit.cc", |
| "800-smali/jni.cc", |
| "909-attach-agent/disallow_debugging.cc", |
| "1947-breakpoint-redefine-deopt/check_deopt.cc", |
| "common/runtime_state.cc", |
| "common/stack_inspect.cc", |
| ], |
| shared_libs: [ |
| "libbacktrace", |
| "libbase", |
| "libnativehelper", |
| ], |
| } |
| |
| art_cc_test_library { |
| name: "libarttest", |
| defaults: ["libarttest-defaults"], |
| shared_libs: [ |
| "libart", |
| "libdexfile", |
| "libprofile", |
| "libartbase", |
| ], |
| } |
| |
| art_cc_test_library { |
| name: "libarttestd", |
| defaults: [ |
| "art_debug_defaults", |
| "libarttest-defaults", |
| ], |
| shared_libs: [ |
| "libartd", |
| "libdexfiled", |
| "libprofiled", |
| "libartbased", |
| ], |
| } |
| |
| art_cc_test_library { |
| name: "libnativebridgetest", |
| shared_libs: ["libart"], |
| defaults: [ |
| "art_test_defaults", |
| "art_debug_defaults", |
| "art_defaults", |
| ], |
| header_libs: ["libnativebridge-dummy-headers"], |
| srcs: ["115-native-bridge/nativebridge.cc"], |
| } |