blob: ac1cad5f9e209a60403b4e6414e5125a737fdb3f [file] [log] [blame]
Keun Soo Yim51d5bb92016-11-04 08:23:57 -07001#
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
Keun Soo Yim51d5bb92016-11-04 08:23:57 -070019# build profiler for Vr.
20include $(CLEAR_VARS)
21
22LOCAL_MODULE := libvts_profiler_hidl_vr@1.0
23
24LOCAL_SRC_FILES := \
25 Vr.vts \
26
27LOCAL_C_INCLUDES += \
28 test/vts/drivers/libprofiling \
29
30LOCAL_VTS_MODE := PROFILER
31
32LOCAL_SHARED_LIBRARIES := \
33 android.hardware.vr@1.0 \
34 libbase \
35 libcutils \
36 liblog \
Yifan Hong6b920e42016-11-16 14:17:58 -080037 libhidlbase \
38 libhidltransport \
Keun Soo Yim51d5bb92016-11-04 08:23:57 -070039 libhwbinder \
40 libprotobuf-cpp-full \
41 libvts_common \
42 libvts_multidevice_proto \
43 libvts_profiling \
44 libutils \
45
46LOCAL_PROTOC_OPTIMIZE_TYPE := full
47
48include $(BUILD_SHARED_LIBRARY)
49
Craig Donner63cd88e2016-12-14 14:05:13 -080050# include hidl test makefiles
51include $(LOCAL_PATH)/functional/vts/testcases/hal/vr/hidl/Android.mk