blob: db7e98ec61234429cc35a0b7501549fedf6e3b29 [file] [log] [blame]
Ryan Campbell6678b1b2016-11-07 09:54:57 -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 Campbell6678b1b2016-11-07 09:54:57 -080019# build profiler for power.
20include $(CLEAR_VARS)
21
22LOCAL_MODULE := libvts_profiler_hidl_power@1.0
23
24LOCAL_SRC_FILES := \
25 Power.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.power@1.0 \
35 libbase \
36 libcutils \
37 liblog \
Yifan Hong6b920e42016-11-16 14:17:58 -080038 libhidlbase \
39 libhidltransport \
Ryan Campbell6678b1b2016-11-07 09:54:57 -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)
Connor O'Brienf04688c2016-12-02 18:32:24 -080050
51include $(call all-makefiles-under,$(LOCAL_PATH))