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 ], 44 include_dirs: ["art/libdexfile"], // for dex_instruction_list.h only 45 multilib: { 46 lib32: { 47 suffix: "32", 48 }, 49 lib64: { 50 suffix: "64", 51 }, 52 }, 53 symlink_preferred_arch: true, 54} 55 56art_cc_library { 57 name: "libtitrace", 58 defaults: ["titrace-defaults"], 59 shared_libs: [ 60 ], 61} 62 63art_cc_library { 64 name: "libtitraced", 65 defaults: [ 66 "art_debug_defaults", 67 "titrace-defaults", 68 ], 69 shared_libs: [ 70 ], 71} 72 73//art_cc_test { 74// name: "art_titrace_tests", 75// defaults: [ 76// "art_gtest_defaults", 77// ], 78// srcs: ["titrace_test.cc"], 79//} 80