Colin Cross | fe6064a | 2016-08-30 13:49:26 -0700 | [diff] [blame] | 1 | // 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 Hao | ea7c629 | 2016-11-14 18:10:16 -0800 | [diff] [blame] | 15 | art_cc_defaults { |
| 16 | name: "libart-dexlayout-defaults", |
Colin Cross | fe6064a | 2016-08-30 13:49:26 -0700 | [diff] [blame] | 17 | host_supported: true, |
| 18 | srcs: [ |
Colin Cross | fe6064a | 2016-08-30 13:49:26 -0700 | [diff] [blame] | 19 | "dexlayout.cc", |
Jeff Hao | 3ab96b4 | 2016-09-09 18:35:01 -0700 | [diff] [blame] | 20 | "dex_ir.cc", |
Colin Cross | fe6064a | 2016-08-30 13:49:26 -0700 | [diff] [blame] | 21 | "dex_ir_builder.cc", |
Jeff Hao | ec7f1a9 | 2017-03-13 16:24:24 -0700 | [diff] [blame] | 22 | "dex_verify.cc", |
David Sehr | cdcfde7 | 2016-09-26 07:44:04 -0700 | [diff] [blame] | 23 | "dex_visualize.cc", |
Jeff Hao | a862100 | 2016-10-04 18:13:44 +0000 | [diff] [blame] | 24 | "dex_writer.cc", |
Colin Cross | fe6064a | 2016-08-30 13:49:26 -0700 | [diff] [blame] | 25 | ], |
Jeff Hao | ea7c629 | 2016-11-14 18:10:16 -0800 | [diff] [blame] | 26 | export_include_dirs: ["."], |
| 27 | shared_libs: ["libbase"], |
| 28 | static_libs: ["libz"], |
| 29 | } |
| 30 | |
| 31 | art_cc_library { |
| 32 | name: "libart-dexlayout", |
| 33 | defaults: ["libart-dexlayout-defaults"], |
| 34 | shared_libs: ["libart"], |
| 35 | } |
| 36 | |
| 37 | art_cc_library { |
| 38 | name: "libartd-dexlayout", |
| 39 | defaults: ["libart-dexlayout-defaults"], |
| 40 | shared_libs: ["libartd"], |
| 41 | } |
| 42 | |
| 43 | art_cc_binary { |
| 44 | name: "dexlayout", |
| 45 | host_supported: true, |
| 46 | srcs: ["dexlayout_main.cc"], |
Colin Cross | fe6064a | 2016-08-30 13:49:26 -0700 | [diff] [blame] | 47 | cflags: ["-Wall"], |
Andreas Gampe | 3fec9ac | 2016-09-13 10:47:28 -0700 | [diff] [blame] | 48 | shared_libs: [ |
| 49 | "libart", |
Jeff Hao | ea7c629 | 2016-11-14 18:10:16 -0800 | [diff] [blame] | 50 | "libart-dexlayout", |
Andreas Gampe | 3fec9ac | 2016-09-13 10:47:28 -0700 | [diff] [blame] | 51 | ], |
Colin Cross | fe6064a | 2016-08-30 13:49:26 -0700 | [diff] [blame] | 52 | } |
Colin Cross | 6e95dd5 | 2016-09-12 15:37:10 -0700 | [diff] [blame] | 53 | |
| 54 | art_cc_test { |
| 55 | name: "art_dexlayout_tests", |
Jeff Hao | ea7c629 | 2016-11-14 18:10:16 -0800 | [diff] [blame] | 56 | defaults: ["art_gtest_defaults"], |
Colin Cross | 6e95dd5 | 2016-09-12 15:37:10 -0700 | [diff] [blame] | 57 | srcs: ["dexlayout_test.cc"], |
| 58 | } |
David Sehr | beca4fe | 2017-03-30 17:50:24 -0700 | [diff] [blame^] | 59 | |
| 60 | art_cc_binary { |
| 61 | name: "dexdiag", |
| 62 | host_supported: false, |
| 63 | srcs: ["dexdiag.cc"], |
| 64 | cflags: ["-Wall"], |
| 65 | shared_libs: [ |
| 66 | "libart", |
| 67 | "libart-dexlayout", |
| 68 | "libpagemap", |
| 69 | ], |
| 70 | } |
| 71 | |