1// 2// Copyright (C) 2016 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 17cc_defaults { 18 name: "profman-defaults", 19 host_supported: true, 20 defaults: ["art_defaults"], 21 srcs: [ 22 "boot_image_profile.cc", 23 "profman.cc", 24 "profile_assistant.cc", 25 ], 26 27 target: { 28 android: { 29 compile_multilib: "prefer32", 30 }, 31 }, 32 33 include_dirs: [ 34 "art/cmdline", 35 ], 36 37 shared_libs: [ 38 "libbase", 39 ], 40} 41 42art_cc_binary { 43 name: "profman", 44 defaults: ["profman-defaults"], 45 shared_libs: [ 46 "libart", 47 ], 48} 49 50art_cc_binary { 51 name: "profmand", 52 defaults: [ 53 "art_debug_defaults", 54 "profman-defaults", 55 ], 56 shared_libs: [ 57 "libartd", 58 ], 59} 60 61art_cc_test { 62 name: "art_profman_tests", 63 defaults: [ 64 "art_gtest_defaults", 65 ], 66 srcs: ["profile_assistant_test.cc"], 67} 68