blob: ee8b2471943e5a92410db59d4cf1b8608901f520 [file] [log] [blame]
Kalesh Singh3265ebe2021-03-27 03:31:54 -04001// Copyright (C) 2021 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
15cc_library_shared {
16 name: "libmemtrackproxy",
17 shared_libs: [
18 "libbase",
19 "libbinder_ndk",
20 "libbinder",
21 "libhidlbase",
22 "liblog",
23 "libcutils",
24 "libutils",
25 "android.hardware.memtrack@1.0",
26 "android.hardware.memtrack-V1-ndk_platform",
27 ],
28 srcs: [
29 "MemtrackProxy.cpp",
30 ],
31 export_include_dirs: [
32 "include",
33 ],
34 local_include_dirs: [
35 "include/memtrackproxy",
36 ],
37 export_shared_lib_headers: [
38 "android.hardware.memtrack@1.0",
39 "android.hardware.memtrack-V1-ndk_platform",
40 ],
41}