blob: 7b2400fdf756008d62f8085a396e3132ca5e5cb9 [file] [log] [blame]
Ryan Campbelleb8a7962016-11-07 09:42:19 -08001#
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
17LOCAL_PATH := $(call my-dir)
18
Ryan Campbelleb8a7962016-11-07 09:42:19 -080019# build profiler for memtrack.
20include $(CLEAR_VARS)
21
22LOCAL_MODULE := libvts_profiler_hidl_memtrack@1.0
23
24LOCAL_SRC_FILES := \
25 Memtrack.vts \
26 types.vts \
27
28LOCAL_C_INCLUDES += \
29 test/vts/drivers/libprofiling \
30
31LOCAL_VTS_MODE := PROFILER
32
33LOCAL_SHARED_LIBRARIES := \
34 android.hardware.memtrack@1.0 \
35 libbase \
36 libcutils \
37 liblog \
Yifan Hong6b920e42016-11-16 14:17:58 -080038 libhidlbase \
39 libhidltransport \
Ryan Campbelleb8a7962016-11-07 09:42:19 -080040 libhwbinder \
41 libprotobuf-cpp-full \
42 libvts_common \
43 libvts_multidevice_proto \
44 libvts_profiling \
45 libutils \
46
47LOCAL_PROTOC_OPTIMIZE_TYPE := full
48
49include $(BUILD_SHARED_LIBRARY)
50
Connor O'Briencd0e5c62016-12-15 16:32:01 -080051include $(LOCAL_PATH)/functional/vts/testcases/hal/memtrack/hidl/target/Android.mk