blob: b9312c8f15c000b8091d5b4e60d28a6ac0877110 [file] [log] [blame]
Colin Cross6b22aa52016-09-12 14:35:39 -07001//
2// Copyright (C) 2016 The Android Open Source Project
3//
4// Licensed under the Apache License, Version 2.0 (the "License");
5// you may not use this file except in compliance with the License.
6// You may obtain a copy of the License at
7//
8// http://www.apache.org/licenses/LICENSE-2.0
9//
10// Unless required by applicable law or agreed to in writing, software
11// distributed under the License is distributed on an "AS IS" BASIS,
12// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13// See the License for the specific language governing permissions and
14// limitations under the License.
15//
16
17art_cc_defaults {
Colin Cross6e95dd52016-09-12 15:37:10 -070018 name: "art_test_defaults",
19 host_supported: true,
Colin Crossafd3c9e2016-09-16 13:47:21 -070020 target: {
21 android_arm: {
22 relative_install_path: "art/arm",
23 },
24 android_arm64: {
25 relative_install_path: "art/arm64",
26 },
27 android_mips: {
28 relative_install_path: "art/mips",
29 },
30 android_mips64: {
31 relative_install_path: "art/mips64",
32 },
33 android_x86: {
34 relative_install_path: "art/x86",
35 },
36 android_x86_64: {
37 relative_install_path: "art/x86_64",
38 },
Colin Crossfd5428b2016-09-19 10:40:05 -070039 darwin: {
40 enabled: false,
41 },
Colin Crossafd3c9e2016-09-16 13:47:21 -070042 },
Dan Albertb5d36de2016-09-21 14:56:51 -070043 cflags: [
44 "-Wno-frame-larger-than=",
45 ],
Colin Crossafd3c9e2016-09-16 13:47:21 -070046}
47
48art_cc_defaults {
49 name: "art_gtest_defaults",
Colin Cross6e95dd52016-09-12 15:37:10 -070050 test_per_src: true,
51 // These really are gtests, but the gtest library comes from libart-gtest.so
52 gtest: false,
53 defaults: [
Colin Crossafd3c9e2016-09-16 13:47:21 -070054 "art_test_defaults",
Andreas Gampe5115efb2017-05-24 16:55:54 -070055 "art_debug_defaults",
56 "art_defaults",
Colin Cross6e95dd52016-09-12 15:37:10 -070057 ],
58
59 shared_libs: [
60 "libartd",
61 "libartd-disassembler",
62 "libvixld-arm",
63 "libvixld-arm64",
64 "libart-gtest",
David Sehrfcbe15c2018-02-15 09:41:13 -080065 "libdexfiled",
Colin Cross6e95dd52016-09-12 15:37:10 -070066
Andreas Gampe3fec9ac2016-09-13 10:47:28 -070067 "libbase",
Colin Cross6e95dd52016-09-12 15:37:10 -070068 "libicuuc",
69 "libicui18n",
70 "libnativehelper",
Dan Willemsen0e503b52017-09-27 16:05:49 -070071 "libz",
Colin Cross6e95dd52016-09-12 15:37:10 -070072 ],
73 whole_static_libs: [
74 "libsigchain",
75 ],
Colin Cross6e95dd52016-09-12 15:37:10 -070076
77 target: {
Dan Willemsen057f1e42017-10-03 14:11:48 -070078 linux: {
Colin Cross6e95dd52016-09-12 15:37:10 -070079 ldflags: [
80 // Allow jni_compiler_test to find Java_MyClassNatives_bar
81 // within itself using dlopen(NULL, ...).
82 // Mac OS linker doesn't understand --export-dynamic.
83 "-Wl,--export-dynamic",
84 "-Wl,-u,Java_MyClassNatives_bar",
85 "-Wl,-u,Java_MyClassNatives_sbar",
86 ],
Colin Cross6e95dd52016-09-12 15:37:10 -070087 cflags: [
88 // gtest issue
89 "-Wno-used-but-marked-unused",
90 "-Wno-deprecated",
91 "-Wno-missing-noreturn",
92 ],
93 },
Dan Willemsen057f1e42017-10-03 14:11:48 -070094 host: {
95 shared_libs: [
96 "libziparchive",
Colin Cross6e95dd52016-09-12 15:37:10 -070097 ],
Dan Willemsen057f1e42017-10-03 14:11:48 -070098 },
99 android: {
Colin Cross6e95dd52016-09-12 15:37:10 -0700100 shared_libs: [
Dimitry Ivanov9642b1b2016-09-28 02:44:00 -0700101 "liblog",
Colin Cross6e95dd52016-09-12 15:37:10 -0700102 ],
Colin Cross6e95dd52016-09-12 15:37:10 -0700103 },
Colin Cross6e95dd52016-09-12 15:37:10 -0700104 },
105}
106
107art_cc_defaults {
Colin Cross6b22aa52016-09-12 14:35:39 -0700108 name: "libart-gtest-defaults",
109 host_supported: true,
110 defaults: [
Colin Cross6b22aa52016-09-12 14:35:39 -0700111 "art_debug_defaults",
Andreas Gampe5115efb2017-05-24 16:55:54 -0700112 "art_defaults",
Colin Cross6b22aa52016-09-12 14:35:39 -0700113 ],
114 shared_libs: [
115 "libartd",
116 "libartd-compiler",
David Sehrfcbe15c2018-02-15 09:41:13 -0800117 "libdexfiled",
Colin Cross6b22aa52016-09-12 14:35:39 -0700118 ],
119 static_libs: [
120 "libgtest",
121 ],
122 target: {
123 android32: {
Colin Crossc5c71872016-09-15 21:07:29 -0700124 cflags: ["-DART_TARGET_NATIVETEST_DIR=/data/nativetest/art"],
Colin Cross6b22aa52016-09-12 14:35:39 -0700125 },
126 android64: {
127 cflags: ["-DART_TARGET_NATIVETEST_DIR=/data/nativetest64/art"],
128 },
Dan Willemsen057f1e42017-10-03 14:11:48 -0700129 linux: {
Colin Cross6b22aa52016-09-12 14:35:39 -0700130 cflags: [
131 // gtest issue
132 "-Wno-used-but-marked-unused",
133 "-Wno-deprecated",
134 "-Wno-missing-noreturn",
135 ],
136 },
Colin Cross942036f2016-09-15 16:24:51 -0700137 darwin: {
138 enabled: false,
139 },
Colin Cross6b22aa52016-09-12 14:35:39 -0700140 },
141}
142
143art_cc_library {
144 name: "libart-gtest",
145 host_supported: true,
146 whole_static_libs: [
147 "libart-compiler-gtest",
148 "libart-runtime-gtest",
Dan Willemsen2ca27802017-09-27 14:57:43 -0700149 "libgtest",
Colin Cross6b22aa52016-09-12 14:35:39 -0700150 ],
151 shared_libs: [
152 "libartd",
153 "libartd-compiler",
David Sehrfcbe15c2018-02-15 09:41:13 -0800154 "libdexfiled",
Colin Crossf0af9062016-10-21 10:50:31 -0700155 "libbase",
Dan Willemsen2ca27802017-09-27 14:57:43 -0700156 "libbacktrace",
Colin Cross6b22aa52016-09-12 14:35:39 -0700157 ],
158 target: {
Colin Cross942036f2016-09-15 16:24:51 -0700159 darwin: {
160 enabled: false,
161 },
Colin Cross6b22aa52016-09-12 14:35:39 -0700162 },
163}
Colin Crossafd3c9e2016-09-16 13:47:21 -0700164
165cc_defaults {
166 name: "libartagent-defaults",
167 defaults: [
Colin Crossafd3c9e2016-09-16 13:47:21 -0700168 "art_test_defaults",
Andreas Gampe5115efb2017-05-24 16:55:54 -0700169 "art_defaults",
Colin Crossafd3c9e2016-09-16 13:47:21 -0700170 ],
171 shared_libs: [
172 "libbacktrace",
Andreas Gampe3fec9ac2016-09-13 10:47:28 -0700173 "libbase",
Colin Crossafd3c9e2016-09-16 13:47:21 -0700174 "libnativehelper",
175 ],
Colin Crossafd3c9e2016-09-16 13:47:21 -0700176}
177
178art_cc_test_library {
179 name: "libartagent",
180 srcs: ["900-hello-plugin/load_unload.cc"],
181 defaults: ["libartagent-defaults"],
Andreas Gampe9462a562018-02-20 09:35:21 -0800182 shared_libs: [
183 "libart",
184 "libdexfile",
185 ],
Colin Crossafd3c9e2016-09-16 13:47:21 -0700186}
187
188art_cc_test_library {
189 name: "libartagentd",
190 srcs: ["900-hello-plugin/load_unload.cc"],
191 defaults: [
Colin Crossafd3c9e2016-09-16 13:47:21 -0700192 "art_debug_defaults",
Andreas Gampe5115efb2017-05-24 16:55:54 -0700193 "libartagent-defaults",
Colin Crossafd3c9e2016-09-16 13:47:21 -0700194 ],
Andreas Gampe9462a562018-02-20 09:35:21 -0800195 shared_libs: [
196 "libartd",
197 "libdexfiled",
198 ],
Colin Crossafd3c9e2016-09-16 13:47:21 -0700199}
200
Andreas Gampee54d9922016-10-11 19:55:37 -0700201art_cc_defaults {
Dan Willemsen2ca27802017-09-27 14:57:43 -0700202 name: "libtiagent-base-defaults",
Andreas Gampecb5125d2018-02-20 09:36:54 -0800203 defaults: [
204 "art_test_defaults",
205 "art_defaults",
206 // Not derived from libartagent-defaults for NDK.
207 ],
Colin Crossafd3c9e2016-09-16 13:47:21 -0700208 srcs: [
Andreas Gampe027444b2017-03-31 12:49:07 -0700209 // These are the ART-independent parts.
Andreas Gampe46651672017-04-07 09:00:04 -0700210 "ti-agent/agent_common.cc",
Andreas Gampe027444b2017-03-31 12:49:07 -0700211 "ti-agent/agent_startup.cc",
Andreas Gampe3f46c962017-03-30 10:26:59 -0700212 "ti-agent/jni_binder.cc",
213 "ti-agent/jvmti_helper.cc",
214 "ti-agent/test_env.cc",
Alex Lightd0d65962017-06-30 11:13:33 -0700215 "ti-agent/breakpoint_helper.cc",
Alex Light78d63412017-04-14 16:20:53 -0700216 "ti-agent/common_helper.cc",
Alex Lighte814f9d2017-07-31 16:14:39 -0700217 "ti-agent/frame_pop_helper.cc",
Alex Light47d49b82017-07-25 14:06:34 -0700218 "ti-agent/locals_helper.cc",
Alex Lightce568642017-09-05 16:54:25 -0700219 "ti-agent/monitors_helper.cc",
Alex Lightd0d65962017-06-30 11:13:33 -0700220 "ti-agent/redefinition_helper.cc",
Alex Light88fd7202017-06-30 08:31:59 -0700221 "ti-agent/suspension_helper.cc",
Alex Light47d49b82017-07-25 14:06:34 -0700222 "ti-agent/stack_trace_helper.cc",
Alex Light54d39dc2017-09-25 17:00:16 -0700223 "ti-agent/threads_helper.cc",
Alex Lightd0d65962017-06-30 11:13:33 -0700224 "ti-agent/trace_helper.cc",
Alex Light9fb1ab12017-09-05 09:32:49 -0700225 "ti-agent/exceptions_helper.cc",
Andreas Gampe027444b2017-03-31 12:49:07 -0700226 // This is the list of non-special OnLoad things and excludes BCI and anything that depends
227 // on ART internals.
Andreas Gampe6dee92e2016-09-12 19:58:13 -0700228 "903-hello-tagging/tagging.cc",
Andreas Gampe27fa96c2016-10-07 15:05:24 -0700229 "904-object-allocation/tracking.cc",
Andreas Gampecc13b222016-10-10 19:09:09 -0700230 "905-object-free/tracking_free.cc",
Andreas Gampee54d9922016-10-11 19:55:37 -0700231 "906-iterate-heap/iterate_heap.cc",
Andreas Gampeaa8b60c2016-10-12 12:51:25 -0700232 "907-get-loaded-classes/get_loaded_classes.cc",
Andreas Gampe9b8c5882016-10-21 15:27:46 -0700233 "908-gc-start-finish/gc_callbacks.cc",
Andreas Gampe3c252f02016-10-27 18:25:17 -0700234 "910-methods/methods.cc",
Andreas Gampeb5eb94a2016-10-27 19:23:09 -0700235 "911-get-stack-trace/stack_trace.cc",
Andreas Gamped5f2ccc2017-04-19 13:37:48 -0700236 "912-classes/classes.cc",
Andreas Gampee0f8ed92017-04-13 16:52:23 -0700237 "913-heaps/heaps.cc",
Andreas Gampeab2f0d02017-01-05 17:23:45 -0800238 "918-fields/fields.cc",
Andreas Gampe50a4e492017-01-06 18:00:20 -0800239 "920-objects/objects.cc",
Andreas Gampe1bdaf732017-01-09 19:21:06 -0800240 "922-properties/properties.cc",
Andreas Gampe319dbe82017-01-09 16:42:21 -0800241 "923-monitors/monitors.cc",
Andreas Gampeaf13ab92017-01-11 20:57:40 -0800242 "924-threads/threads.cc",
Andreas Gamped18d9e22017-01-16 16:08:45 +0000243 "925-threadgroups/threadgroups.cc",
Andreas Gampe35bcf812017-01-13 16:24:17 -0800244 "927-timers/timers.cc",
Andreas Gampe6f8e4f02017-01-16 18:18:14 -0800245 "928-jni-table/jni_table.cc",
Andreas Gampece7732b2017-01-17 15:50:26 -0800246 "929-search/search.cc",
Andreas Gampe732b0ac2017-01-18 15:23:39 -0800247 "931-agent-thread/agent_thread.cc",
Andreas Gampeeb0cea12017-01-23 08:50:04 -0800248 "933-misc-events/misc_events.cc",
Alex Light78d63412017-04-14 16:20:53 -0700249 "945-obsolete-native/obsolete_native.cc",
Alex Light8fd08562018-02-13 10:09:03 -0800250 "983-source-transform-verify/source_transform.cc",
Alex Light78d63412017-04-14 16:20:53 -0700251 "984-obsolete-invoke/obsolete_invoke.cc",
Alex Lightd78ddec2017-04-18 15:20:38 -0700252 "986-native-method-bind/native_bind.cc",
Alex Light65af20b2017-04-20 09:15:08 -0700253 "987-agent-bind/agent_bind.cc",
Alex Lightb7edcda2017-04-27 13:20:31 -0700254 "989-method-trace-throw/method_trace.cc",
Alex Light7c958492017-06-16 08:59:19 -0700255 "991-field-trace-2/field_trace.cc",
Alex Light6fa7b812017-06-16 09:04:29 -0700256 "992-source-data/source_file.cc",
Alex Lightc38c3692017-06-27 15:45:14 -0700257 "993-breakpoints/breakpoints.cc",
258 "996-breakpoint-obsolete/obsolete_breakpoints.cc",
Alex Light8ddfd9f2017-07-05 16:33:46 -0700259 "1900-track-alloc/alloc.cc",
Alex Light4c174282017-07-05 10:18:18 -0700260 "1901-get-bytecodes/bytecodes.cc",
Alex Light88fd7202017-06-30 08:31:59 -0700261 "1905-suspend-native/native_suspend.cc",
262 "1908-suspend-native-resume-self/native_suspend_resume.cc",
Alex Light092a4042017-07-12 08:46:44 -0700263 "1909-per-agent-tls/agent_tls.cc",
Alex Light47d49b82017-07-25 14:06:34 -0700264 "1914-get-local-instance/local_instance.cc",
Alex Light1d8a9742017-08-17 11:12:06 -0700265 "1919-vminit-thread-start-timing/vminit.cc",
Alex Light23aa7482017-08-16 10:01:13 -0700266 "1920-suspend-native-monitor/native_suspend_monitor.cc",
267 "1921-suspend-native-recursive-monitor/native_suspend_recursive_monitor.cc",
Alex Light88e1ddd2017-08-21 13:09:55 -0700268 "1922-owned-monitors-info/owned_monitors.cc",
Alex Lighte814f9d2017-07-31 16:14:39 -0700269 "1924-frame-pop-toggle/frame_pop_toggle.cc",
270 "1926-missed-frame-pop/frame_pop_missed.cc",
Alex Lightce568642017-09-05 16:54:25 -0700271 "1927-exception-event/exception_event.cc",
272 "1930-monitor-info/monitor.cc",
Dan Willemsen2ca27802017-09-27 14:57:43 -0700273 "1932-monitor-events-misc/monitor_misc.cc",
Alex Light54d39dc2017-09-25 17:00:16 -0700274 "1934-jvmti-signal-thread/signal_threads.cc",
Alex Light3dea2122017-10-11 15:56:48 +0000275 "1939-proxy-frames/local_instance.cc",
Alex Lightb284f8d2017-11-21 00:00:48 +0000276 "1941-dispose-stress/dispose_stress.cc",
Alex Light4d77daf2018-01-04 11:51:14 -0800277 "1942-suspend-raw-monitor-exit/native_suspend_monitor.cc",
278 "1943-suspend-raw-monitor-wait/native_suspend_monitor.cc",
Alex Lightc7588752018-02-20 11:15:54 -0800279 "1946-list-descriptors/descriptors.cc",
Alex Lightd3782f32018-04-05 13:49:43 -0700280 "1950-unprepared-transform/unprepared_transform.cc",
Colin Crossafd3c9e2016-09-16 13:47:21 -0700281 ],
Andreas Gampecb5125d2018-02-20 09:36:54 -0800282 // Use NDK-compatible headers for ctstiagent.
Alex Light8c2b9292017-11-09 13:21:01 -0800283 header_libs: [
Alex Light8c2b9292017-11-09 13:21:01 -0800284 "libopenjdkjvmti_headers",
285 ],
Andreas Gampe3f46c962017-03-30 10:26:59 -0700286 include_dirs: ["art/test/ti-agent"],
Andreas Gampee54d9922016-10-11 19:55:37 -0700287}
288
Andreas Gampe027444b2017-03-31 12:49:07 -0700289art_cc_defaults {
290 name: "libtiagent-defaults",
Andreas Gampecb5125d2018-02-20 09:36:54 -0800291 defaults: [
292 "libtiagent-base-defaults",
293 "libartagent-defaults",
294 ],
Andreas Gampe027444b2017-03-31 12:49:07 -0700295 srcs: [
296 // This is to get the IsInterpreted native method.
297 "common/stack_inspect.cc",
298 "common/runtime_state.cc",
Alex Light78d63412017-04-14 16:20:53 -0700299 "ti-agent/common_load.cc",
Andreas Gampe027444b2017-03-31 12:49:07 -0700300 // This includes the remaining test functions. We should try to refactor things to
301 // make this list smaller.
Andreas Gampe027444b2017-03-31 12:49:07 -0700302 "901-hello-ti-agent/basics.cc",
303 "909-attach-agent/attach.cc",
Andreas Gamped5f2ccc2017-04-19 13:37:48 -0700304 "912-classes/classes_art.cc",
Andreas Gampe027444b2017-03-31 12:49:07 -0700305 "936-search-onload/search_onload.cc",
Andreas Gampe59484b92018-02-14 14:00:46 -0800306 "983-source-transform-verify/source_transform_art.cc",
Alex Light8c2b9292017-11-09 13:21:01 -0800307 "1940-ddms-ext/ddm_ext.cc",
Alex Light0e841182018-02-12 17:42:50 +0000308 "1944-sudden-exit/sudden_exit.cc",
Andreas Gampe027444b2017-03-31 12:49:07 -0700309 ],
310}
311
Andreas Gampee54d9922016-10-11 19:55:37 -0700312art_cc_test_library {
313 name: "libtiagent",
314 defaults: ["libtiagent-defaults"],
David Sehrfcbe15c2018-02-15 09:41:13 -0800315 shared_libs: [
316 "libart",
317 "libdexfile",
318 ],
Colin Crossafd3c9e2016-09-16 13:47:21 -0700319}
320
321art_cc_test_library {
322 name: "libtiagentd",
323 defaults: [
Colin Crossafd3c9e2016-09-16 13:47:21 -0700324 "art_debug_defaults",
Andreas Gampe5115efb2017-05-24 16:55:54 -0700325 "libtiagent-defaults",
Colin Crossafd3c9e2016-09-16 13:47:21 -0700326 ],
David Sehrfcbe15c2018-02-15 09:41:13 -0800327 shared_libs: [
328 "libartd",
329 "libdexfiled",
330 ],
Colin Crossafd3c9e2016-09-16 13:47:21 -0700331}
332
Andreas Gampe59484b92018-02-14 14:00:46 -0800333cc_library_static {
Andreas Gamped0ed0d92018-02-12 15:03:36 -0800334 name: "libctstiagent",
335 defaults: ["libtiagent-base-defaults"],
Andreas Gampe59484b92018-02-14 14:00:46 -0800336 host_supported: false,
337 srcs: [
338 "983-source-transform-verify/source_transform_slicer.cc",
339 ],
Andreas Gamped0ed0d92018-02-12 15:03:36 -0800340 whole_static_libs: [
Andreas Gampecb5125d2018-02-20 09:36:54 -0800341 "slicer_ndk",
Andreas Gamped0ed0d92018-02-12 15:03:36 -0800342 ],
343 static_libs: [
Andreas Gampecb5125d2018-02-20 09:36:54 -0800344 "libbase_ndk",
Andreas Gamped0ed0d92018-02-12 15:03:36 -0800345 ],
Andreas Gampecb5125d2018-02-20 09:36:54 -0800346 shared_libs: [
347 "libz", // for slicer (using adler32).
348 ],
349 sdk_version: "current",
350 stl: "c++_static",
351 cpp_std: "c++14",
352 include_dirs: [
Alex Light8fd08562018-02-13 10:09:03 -0800353 // This is needed to resolve the base/ header file in libdexfile. Unfortunately there are
354 // many problems with how we export headers that are making doing this the 'right' way
355 // difficult.
356 // TODO: move those headers to art/ rather than under runtime.
Andreas Gampecb5125d2018-02-20 09:36:54 -0800357 "art/runtime",
358 // NDK headers aren't available in platform NDK builds.
359 "libnativehelper/include_jni",
Alex Light8fd08562018-02-13 10:09:03 -0800360 ],
Andreas Gamped0ed0d92018-02-12 15:03:36 -0800361 export_include_dirs: ["ti-agent"],
362}
363
Alex Light8f2c6d42017-04-10 16:27:35 -0700364art_cc_defaults {
365 name: "libtistress-defaults",
366 defaults: ["libartagent-defaults"],
367 srcs: [
368 "ti-stress/stress.cc",
369 ],
370 shared_libs: [
371 "libbase",
Alex Lightceae9542017-09-07 13:28:00 -0700372 "slicer",
Alex Light8f2c6d42017-04-10 16:27:35 -0700373 ],
374 header_libs: ["libopenjdkjvmti_headers"],
375}
376
377art_cc_test_library {
378 name: "libtistress",
Dan Willemsen2ca27802017-09-27 14:57:43 -0700379 defaults: ["libtistress-defaults"],
Alex Light8f2c6d42017-04-10 16:27:35 -0700380 shared_libs: ["libart"],
381}
382
383art_cc_test_library {
384 name: "libtistressd",
385 defaults: [
Alex Light8f2c6d42017-04-10 16:27:35 -0700386 "art_debug_defaults",
Andreas Gampe5115efb2017-05-24 16:55:54 -0700387 "libtistress-defaults",
Alex Light8f2c6d42017-04-10 16:27:35 -0700388 ],
389 shared_libs: ["libartd"],
390}
391
Colin Crossafd3c9e2016-09-16 13:47:21 -0700392cc_defaults {
393 name: "libarttest-defaults",
394 defaults: [
Colin Crossafd3c9e2016-09-16 13:47:21 -0700395 "art_test_defaults",
Andreas Gampe5115efb2017-05-24 16:55:54 -0700396 "art_defaults",
Colin Crossafd3c9e2016-09-16 13:47:21 -0700397 ],
398 srcs: [
Colin Crossafd3c9e2016-09-16 13:47:21 -0700399 "004-JniTest/jni_test.cc",
Colin Crossafd3c9e2016-09-16 13:47:21 -0700400 "004-ReferenceMap/stack_walk_refmap_jni.cc",
Roland Levillainad0777d2018-02-12 20:00:18 +0000401 "004-SignalTest/signaltest.cc",
Colin Crossafd3c9e2016-09-16 13:47:21 -0700402 "004-StackWalk/stack_walk_jni.cc",
403 "004-ThreadStress/thread_stress.cc",
404 "004-UnsafeTest/unsafe_test.cc",
405 "044-proxy/native_proxy.cc",
406 "051-thread/thread_test.cc",
407 "117-nopatchoat/nopatchoat.cc",
408 "1337-gc-coverage/gc_coverage.cc",
409 "136-daemon-jni-shutdown/daemon_jni_shutdown.cc",
410 "137-cfi/cfi.cc",
411 "139-register-natives/regnative.cc",
412 "141-class-unload/jni_unload.cc",
413 "148-multithread-gc-annotations/gc_coverage.cc",
414 "149-suspend-all-stress/suspend_all.cc",
Mathieu Chartier72a32892017-01-24 09:40:56 -0800415 "154-gc-loop/heap_interface.cc",
Andreas Gampeaaf0d382017-11-27 14:10:21 -0800416 "167-visit-locks/visit_locks.cc",
Andreas Gampe56776012018-01-26 17:40:55 -0800417 "169-threadgroup-jni/jni_daemon_thread.cc",
Roland Levillainad0777d2018-02-12 20:00:18 +0000418 "1945-proxy-method-arguments/get_args.cc",
Andreas Gampeaaf0d382017-11-27 14:10:21 -0800419 "203-multi-checkpoint/multi_checkpoint.cc",
Alex Lightf4ed7e82018-01-17 11:52:36 -0800420 "305-other-fault-handler/fault_handler.cc",
Colin Crossafd3c9e2016-09-16 13:47:21 -0700421 "454-get-vreg/get_vreg_jni.cc",
422 "457-regs/regs_jni.cc",
423 "461-get-reference-vreg/get_reference_vreg_jni.cc",
424 "466-get-live-vreg/get_live_vreg_jni.cc",
425 "497-inlining-and-class-loader/clear_dex_cache.cc",
426 "543-env-long-ref/env_long_ref.cc",
427 "566-polymorphic-inlining/polymorphic_inline.cc",
428 "570-checker-osr/osr.cc",
429 "595-profile-saving/profile-saving.cc",
430 "596-app-images/app_images.cc",
Hans Boehm6fe97e02016-05-04 18:35:57 -0700431 "596-monitor-inflation/monitor_inflation.cc",
Colin Crossafd3c9e2016-09-16 13:47:21 -0700432 "597-deopt-new-string/deopt.cc",
Alexey Grebenkinab2ce842018-02-01 19:09:59 +0300433 "616-cha-unloading/cha_unload.cc",
Vladimir Markoc5798bf2016-12-09 10:20:54 +0000434 "626-const-class-linking/clear_dex_cache_types.cc",
Nicolas Geoffray13a797b2017-03-15 16:41:31 +0000435 "642-fp-callees/fp_callees.cc",
Vladimir Marko5fdd7782017-04-20 11:26:03 +0100436 "647-jni-get-field-id/get_field_id.cc",
Roland Levillain0d2323e2017-06-26 18:14:39 +0100437 "656-annotation-lookup-generic-jni/test.cc",
Igor Murashkin545412b2017-08-17 15:26:54 -0700438 "661-oat-writer-layout/oat_writer_layout.cc",
439 "664-aget-verifier/aget-verifier.cc",
Vladimir Marko2196c652017-11-30 16:16:07 +0000440 "667-jit-jni-stub/jit_jni_stub_test.cc",
David Brazdil11b67b22018-01-18 16:41:40 +0000441 "674-hiddenapi/hiddenapi.cc",
Dan Willemsen2ca27802017-09-27 14:57:43 -0700442 "708-jit-cache-churn/jit.cc",
Alex Light90f8add2018-02-23 15:25:45 -0800443 "909-attach-agent/disallow_debugging.cc",
Alex Lighte34fe442018-02-21 17:35:55 -0800444 "1947-breakpoint-redefine-deopt/check_deopt.cc",
Roland Levillainad0777d2018-02-12 20:00:18 +0000445 "common/runtime_state.cc",
446 "common/stack_inspect.cc",
Colin Crossafd3c9e2016-09-16 13:47:21 -0700447 ],
448 shared_libs: [
449 "libbacktrace",
Andreas Gampe3fec9ac2016-09-13 10:47:28 -0700450 "libbase",
Colin Crossafd3c9e2016-09-16 13:47:21 -0700451 "libnativehelper",
452 ],
Colin Crossafd3c9e2016-09-16 13:47:21 -0700453}
454
455art_cc_test_library {
456 name: "libarttest",
457 defaults: ["libarttest-defaults"],
David Sehrfcbe15c2018-02-15 09:41:13 -0800458 shared_libs: [
459 "libart",
460 "libdexfile",
461 ],
Colin Crossafd3c9e2016-09-16 13:47:21 -0700462}
463
464art_cc_test_library {
465 name: "libarttestd",
466 defaults: [
Colin Crossafd3c9e2016-09-16 13:47:21 -0700467 "art_debug_defaults",
Andreas Gampe5115efb2017-05-24 16:55:54 -0700468 "libarttest-defaults",
Colin Crossafd3c9e2016-09-16 13:47:21 -0700469 ],
David Sehrfcbe15c2018-02-15 09:41:13 -0800470 shared_libs: [
471 "libartd",
472 "libdexfiled",
473 ],
Colin Crossafd3c9e2016-09-16 13:47:21 -0700474}
475
476art_cc_test_library {
477 name: "libnativebridgetest",
478 shared_libs: ["libart"],
479 defaults: [
Colin Crossafd3c9e2016-09-16 13:47:21 -0700480 "art_test_defaults",
Andreas Gampe5115efb2017-05-24 16:55:54 -0700481 "art_debug_defaults",
482 "art_defaults",
Colin Crossafd3c9e2016-09-16 13:47:21 -0700483 ],
Steven Morelandc7affbd2017-07-06 11:26:51 -0700484 header_libs: ["libnativebridge-dummy-headers"],
Colin Crossafd3c9e2016-09-16 13:47:21 -0700485 srcs: ["115-native-bridge/nativebridge.cc"],
Colin Crossafd3c9e2016-09-16 13:47:21 -0700486}