blob: 588a3ae3ca0b11cef394062307e2b170c05b9d36 [file] [log] [blame]
Colin Crossfe6064a2016-08-30 13:49:26 -07001// Copyright (C) 2016 The Android Open Source Project
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
Jeff Haoea7c6292016-11-14 18:10:16 -080015art_cc_defaults {
16 name: "libart-dexlayout-defaults",
David Sehr7639cdc2017-04-15 10:06:21 -070017 defaults: ["art_defaults"],
Colin Crossfe6064a2016-08-30 13:49:26 -070018 host_supported: true,
19 srcs: [
Colin Crossfe6064a2016-08-30 13:49:26 -070020 "dexlayout.cc",
Jeff Hao3ab96b42016-09-09 18:35:01 -070021 "dex_ir.cc",
Colin Crossfe6064a2016-08-30 13:49:26 -070022 "dex_ir_builder.cc",
David Sehr55232f12017-04-19 14:06:49 -070023 "dex_verify.cc",
David Sehrcdcfde72016-09-26 07:44:04 -070024 "dex_visualize.cc",
Jeff Haoa8621002016-10-04 18:13:44 +000025 "dex_writer.cc",
Colin Crossfe6064a2016-08-30 13:49:26 -070026 ],
Jeff Haoea7c6292016-11-14 18:10:16 -080027 export_include_dirs: ["."],
28 shared_libs: ["libbase"],
29 static_libs: ["libz"],
30}
31
32art_cc_library {
33 name: "libart-dexlayout",
34 defaults: ["libart-dexlayout-defaults"],
35 shared_libs: ["libart"],
36}
37
38art_cc_library {
39 name: "libartd-dexlayout",
40 defaults: ["libart-dexlayout-defaults"],
41 shared_libs: ["libartd"],
42}
43
44art_cc_binary {
45 name: "dexlayout",
David Sehr55232f12017-04-19 14:06:49 -070046 defaults: ["art_defaults"],
Jeff Haoea7c6292016-11-14 18:10:16 -080047 host_supported: true,
48 srcs: ["dexlayout_main.cc"],
Colin Crossfe6064a2016-08-30 13:49:26 -070049 cflags: ["-Wall"],
Andreas Gampe3fec9ac2016-09-13 10:47:28 -070050 shared_libs: [
51 "libart",
Jeff Haoea7c6292016-11-14 18:10:16 -080052 "libart-dexlayout",
Andreas Gampe08ae77f2017-04-26 22:02:33 -070053 "libbase",
Andreas Gampe3fec9ac2016-09-13 10:47:28 -070054 ],
Colin Crossfe6064a2016-08-30 13:49:26 -070055}
Colin Cross6e95dd52016-09-12 15:37:10 -070056
57art_cc_test {
58 name: "art_dexlayout_tests",
Jeff Haoea7c6292016-11-14 18:10:16 -080059 defaults: ["art_gtest_defaults"],
Colin Cross6e95dd52016-09-12 15:37:10 -070060 srcs: ["dexlayout_test.cc"],
61}
David Sehrbeca4fe2017-03-30 17:50:24 -070062
63art_cc_binary {
64 name: "dexdiag",
David Sehr55232f12017-04-19 14:06:49 -070065 defaults: ["art_defaults"],
66 host_supported: true,
David Sehrbeca4fe2017-03-30 17:50:24 -070067 srcs: ["dexdiag.cc"],
68 cflags: ["-Wall"],
69 shared_libs: [
70 "libart",
71 "libart-dexlayout",
David Sehrbeca4fe2017-03-30 17:50:24 -070072 ],
David Sehr55232f12017-04-19 14:06:49 -070073 target: {
74 android: {
75 shared_libs: [
76 "libpagemap",
77 ]
78 },
79 }
David Sehrbeca4fe2017-03-30 17:50:24 -070080}
81
David Sehr55232f12017-04-19 14:06:49 -070082art_cc_test {
83 name: "art_dexdiag_tests",
84 host_supported: true,
85 defaults: [
86 "art_gtest_defaults",
87 ],
88 srcs: ["dexdiag_test.cc"],
89}