Home | History | Annotate | Download | only in hal
      1 #
      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 
     17 LOCAL_PATH := $(call my-dir)
     18 
     19 include $(CLEAR_VARS)
     20 
     21 LOCAL_MODULE := vts_hal_agent
     22 LOCAL_MODULE_STEM_64 := vts_hal_agent64
     23 LOCAL_MODULE_STEM_32 := vts_hal_agent32
     24 LOCAL_MODULE_TAGS := optional
     25 
     26 LOCAL_CFLAGS += -Wall -Werror
     27 
     28 LOCAL_SRC_FILES := \
     29   VtsAgentMain.cpp \
     30   TcpServerForRunner.cpp \
     31   AgentRequestHandler.cpp \
     32   SocketClientToDriver.cpp \
     33   BinderClientToDriver.cpp \
     34   SocketServerForDriver.cpp \
     35 
     36 LOCAL_SHARED_LIBRARIES := \
     37   libutils \
     38   libcutils \
     39   libbinder \
     40   libvts_common \
     41   libc++ \
     42   libvts_multidevice_proto \
     43   libprotobuf-cpp-full \
     44   libvts_drivercomm \
     45 
     46 LOCAL_C_INCLUDES += \
     47   bionic \
     48   external/libcxx/include \
     49   frameworks/native/include \
     50   system/core/include \
     51   test/vts/agents/hal \
     52   test/vts/agents/hal/proto \
     53   test/vts/drivers/hal/common \
     54   test/vts/drivers/libdrivercomm \
     55   external/protobuf/src \
     56 
     57 LOCAL_MULTILIB := both
     58 
     59 include $(BUILD_EXECUTABLE)
     60