blob: bad6574d58319c32fe98aa8910289c1e66344524 [file] [log] [blame]
Colin Cross4a456272016-08-30 13:49:26 -07001//
2// Copyright (C) 2012 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 {
18 name: "libart-disassembler-defaults",
19 defaults: ["art_defaults"],
20 host_supported: true,
21 clang: true,
22 srcs: [
23 "disassembler.cc",
24 "disassembler_arm.cc",
25 "disassembler_arm64.cc",
26 "disassembler_mips.cc",
27 "disassembler_x86.cc",
28 ],
29
30 shared_libs: ["liblog"],
31 export_include_dirs: ["."],
32}
33
34art_cc_library {
35 name: "libart-disassembler",
36 defaults: ["libart-disassembler-defaults"],
37 shared_libs: [
38 "libart",
39 // For disassembler_arm64.
40 "libvixld-arm64",
41 ],
42}
43
44art_cc_library {
45 name: "libartd-disassembler",
46 defaults: [
47 "libart-disassembler-defaults",
48 "art_debug_defaults",
49 ],
50 shared_libs: [
51 "libartd",
52 // For disassembler_arm64.
53 "libvixld-arm64",
54 ],
55}