1// Copyright (C) 2020 The Android Open Source Project 2// 3// Licensed under the Apache License, Version 2.0 (the "License"); 4// you may not use this file except in compliance with the License. 5// You may obtain a copy of the License at 6// 7// http://www.apache.org/licenses/LICENSE-2.0 8// 9// Unless required by applicable law or agreed to in writing, software 10// distributed under the License is distributed on an "AS IS" BASIS, 11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12// See the License for the specific language governing permissions and 13// limitations under the License. 14 15package { 16 // See: http://go/android-license-faq 17 // A large-scale-change added 'default_applicable_licenses' to import 18 // all of the 'license_kinds' from "hardware_interfaces_license" 19 // to get the below license kinds: 20 // SPDX-license-identifier-Apache-2.0 21 default_applicable_licenses: ["hardware_interfaces_license"], 22} 23 24cc_binary { 25 name: "android.hardware.memtrack-service.example", 26 relative_install_path: "hw", 27 init_rc: ["memtrack-default.rc"], 28 vintf_fragments: ["memtrack-default.xml"], 29 vendor: true, 30 shared_libs: [ 31 "libbase", 32 "libbinder_ndk", 33 "android.hardware.memtrack-V1-ndk", 34 ], 35 srcs: [ 36 "main.cpp", 37 "Memtrack.cpp", 38 ], 39} 40 41cc_binary { 42 name: "android.hardware.memtrack-service.apex", 43 stem: "android.hardware.memtrack-service.example", 44 relative_install_path: "hw", 45 vendor: true, 46 47 stl: "c++_static", 48 static_libs: [ 49 "libbase", 50 "android.hardware.memtrack-V1-ndk", 51 ], 52 shared_libs: [ 53 "libbinder_ndk", 54 "liblog", 55 ], 56 srcs: [ 57 "main.cpp", 58 "Memtrack.cpp", 59 ], 60 installable: false, // installed in APEX 61} 62 63prebuilt_etc { 64 name: "memtrack-default-apex.rc", 65 src: "memtrack-default-apex.rc", 66 installable: false, 67} 68 69prebuilt_etc { 70 name: "memtrack-default.xml", 71 src: "memtrack-default.xml", 72 sub_dir: "vintf", 73 installable: false, 74} 75 76apex { 77 name: "com.android.hardware.memtrack", 78 file_contexts: "apex_file_contexts", 79 manifest: "apex_manifest.json", 80 key: "com.android.hardware.key", 81 certificate: ":com.android.hardware.certificate", 82 updatable: false, 83 vendor: true, 84 85 binaries: [ 86 "android.hardware.memtrack-service.apex", 87 ], 88 prebuilts: [ 89 "memtrack-default-apex.rc", 90 "memtrack-default.xml", 91 ], 92} 93