blob: e7dec14579a07d7e4865429cf0d6bcea7c74e539 [file] [log] [blame]
Keun Soo Yim95095c12016-10-10 13:42:31 -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#
Keun Soo Yimb7b2ff42016-12-12 18:26:16 -08008# http://www.apache.org/licenses/LICENSE-2.0
Keun Soo Yim95095c12016-10-10 13:42:31 -07009#
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 Yim95095c12016-10-10 13:42:31 -070019# build profiler for Nfc.
20include $(CLEAR_VARS)
21
22LOCAL_MODULE := libvts_profiler_hidl_nfc@1.0
23
24LOCAL_SRC_FILES := \
25 Nfc.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.nfc@1.0 \
35 libbase \
36 libcutils \
37 liblog \
Yifan Hong6b920e42016-11-16 14:17:58 -080038 libhidlbase \
39 libhidltransport \
Keun Soo Yim95095c12016-10-10 13:42:31 -070040 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
51# build profiler for NfcClientCallback.
52include $(CLEAR_VARS)
53
54LOCAL_MODULE := libvts_profiler_hidl_nfc_client_callback_@1.0
55
56LOCAL_SRC_FILES := \
57 NfcClientCallback.vts \
58 types.vts \
59
60LOCAL_C_INCLUDES += \
61 test/vts/drivers/libprofiling \
62
63LOCAL_VTS_MODE := PROFILER
64
65LOCAL_SHARED_LIBRARIES := \
66 android.hardware.nfc@1.0 \
67 libbase \
68 libcutils \
69 liblog \
Yifan Hong6b920e42016-11-16 14:17:58 -080070 libhidlbase \
71 libhidltransport \
Keun Soo Yim95095c12016-10-10 13:42:31 -070072 libhwbinder \
73 libprotobuf-cpp-full \
74 libvts_common \
75 libvts_multidevice_proto \
76 libvts_profiling \
77 libutils \
78
79LOCAL_PROTOC_OPTIMIZE_TYPE := full
80
81include $(BUILD_SHARED_LIBRARY)
Keun Soo Yim8a36c0b2016-11-17 15:49:13 -080082
83include $(call all-makefiles-under,$(LOCAL_PATH))