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        "jni_headers",
43        "libopenjdkjvmti_headers",
44        "libdexfile_all_headers", // for dex_instruction_list.h only
45    ],
46}
47
48art_cc_library {
49    name: "libtitrace",
50    defaults: ["titrace-defaults"],
51    shared_libs: [
52    ],
53}
54
55art_cc_library {
56    name: "libtitraced",
57    defaults: [
58        "art_debug_defaults",
59        "titrace-defaults",
60    ],
61    shared_libs: [
62    ],
63}
64
65//art_cc_test {
66//    name: "art_titrace_tests",
67//    defaults: [
68//        "art_gtest_defaults",
69//    ],
70//    srcs: ["titrace_test.cc"],
71//}
72