blob: 15084fca86e660c75cc6597d65b449289183bd15 [file] [log] [blame]
Keun Soo Yim6473c642016-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#
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
19# 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 \
38 libhidl \
39 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
50# build profiler for NfcClientCallback.
51include $(CLEAR_VARS)
52
53LOCAL_MODULE := libvts_profiler_hidl_nfc_client_callback_@1.0
54
55LOCAL_SRC_FILES := \
56 NfcClientCallback.vts \
57 types.vts \
58
59LOCAL_C_INCLUDES += \
60 test/vts/drivers/libprofiling \
61
62LOCAL_VTS_MODE := PROFILER
63
64LOCAL_SHARED_LIBRARIES := \
65 android.hardware.nfc@1.0 \
66 libbase \
67 libcutils \
68 liblog \
69 libhidl \
70 libhwbinder \
71 libprotobuf-cpp-full \
72 libvts_common \
73 libvts_multidevice_proto \
74 libvts_profiling \
75 libutils \
76
77LOCAL_PROTOC_OPTIMIZE_TYPE := full
78
79include $(BUILD_SHARED_LIBRARY)