blob: 9ee9ebd3d473018977487086cfcb8b9c8371b580 [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",
Colin Crossfe6064a2016-08-30 13:49:26 -070017 host_supported: true,
18 srcs: [
Colin Crossfe6064a2016-08-30 13:49:26 -070019 "dexlayout.cc",
Jeff Hao3ab96b42016-09-09 18:35:01 -070020 "dex_ir.cc",
Colin Crossfe6064a2016-08-30 13:49:26 -070021 "dex_ir_builder.cc",
David Sehrcdcfde72016-09-26 07:44:04 -070022 "dex_visualize.cc",
Jeff Haoa8621002016-10-04 18:13:44 +000023 "dex_writer.cc",
Colin Crossfe6064a2016-08-30 13:49:26 -070024 ],
Jeff Haoea7c6292016-11-14 18:10:16 -080025 export_include_dirs: ["."],
26 shared_libs: ["libbase"],
27 static_libs: ["libz"],
28}
29
30art_cc_library {
31 name: "libart-dexlayout",
32 defaults: ["libart-dexlayout-defaults"],
33 shared_libs: ["libart"],
34}
35
36art_cc_library {
37 name: "libartd-dexlayout",
38 defaults: ["libart-dexlayout-defaults"],
39 shared_libs: ["libartd"],
40}
41
42art_cc_binary {
43 name: "dexlayout",
44 host_supported: true,
45 srcs: ["dexlayout_main.cc"],
Colin Crossfe6064a2016-08-30 13:49:26 -070046 cflags: ["-Wall"],
Andreas Gampe3fec9ac2016-09-13 10:47:28 -070047 shared_libs: [
48 "libart",
Jeff Haoea7c6292016-11-14 18:10:16 -080049 "libart-dexlayout",
Andreas Gampe3fec9ac2016-09-13 10:47:28 -070050 ],
Colin Crossfe6064a2016-08-30 13:49:26 -070051}
Colin Cross6e95dd52016-09-12 15:37:10 -070052
53art_cc_test {
54 name: "art_dexlayout_tests",
Jeff Haoea7c6292016-11-14 18:10:16 -080055 defaults: ["art_gtest_defaults"],
Colin Cross6e95dd52016-09-12 15:37:10 -070056 srcs: ["dexlayout_test.cc"],
57}