1//
2// Copyright (C) 2017 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
17// Build variants {target,host} x {debug,ndebug} x {32,64}
18
19cc_defaults {
20    name: "titrace-defaults",
21    host_supported: true,
22    srcs: [
23        "titrace.cc",
24        "instruction_decoder.cc",
25    ],
26    defaults: ["art_defaults"],
27
28    // Note that this tool needs to be built for both 32-bit and 64-bit since it requires
29    // to be same ISA as what it is attached to.
30    compile_multilib: "both",
31
32    shared_libs: [
33        "libbase",
34    ],
35    target: {
36        android: {
37        },
38        host: {
39        },
40    },
41    header_libs: [
42        "libopenjdkjvmti_headers",
43        "libdexfile_all_headers", // for dex_instruction_list.h only
44    ],
45}
46
47art_cc_library {
48    name: "libtitrace",
49    defaults: ["titrace-defaults"],
50    shared_libs: [
51    ],
52}
53
54art_cc_library {
55    name: "libtitraced",
56    defaults: [
57        "art_debug_defaults",
58        "titrace-defaults",
59    ],
60    shared_libs: [
61    ],
62}
63
64//art_cc_test {
65//    name: "art_titrace_tests",
66//    defaults: [
67//        "art_gtest_defaults",
68//    ],
69//    srcs: ["titrace_test.cc"],
70//}
71