Home | History | Annotate | Download | only in vsoc_input_service
      1 # Copyright (C) 2017 The Android Open Source Project
      2 #
      3 # Licensed under the Apache License, Version 2.0 (the "License");
      4 # you may not use this file except in compliance with the License.
      5 # You may obtain a copy of the License at
      6 #
      7 #      http://www.apache.org/licenses/LICENSE-2.0
      8 #
      9 # Unless required by applicable law or agreed to in writing, software
     10 # distributed under the License is distributed on an "AS IS" BASIS,
     11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     12 # See the License for the specific language governing permissions and
     13 # limitations under the License.
     14 
     15 LOCAL_PATH := $(call my-dir)
     16 include $(CLEAR_VARS)
     17 LOCAL_MODULE := vsoc_input_service
     18 LOCAL_MODULE_TAGS := optional
     19 LOCAL_SRC_FILES := \
     20     virtual_device_base.cpp \
     21     virtual_power_button.cpp \
     22     virtual_keyboard.cpp \
     23     virtual_touchscreen.cpp \
     24     vsoc_input_service.cpp \
     25     main.cpp
     26 
     27 LOCAL_C_INCLUDES := \
     28     device/google/cuttlefish_common \
     29     device/google/cuttlefish_kernel
     30 
     31 LOCAL_SHARED_LIBRARIES := \
     32     cuttlefish_auto_resources \
     33     libcuttlefish_fs \
     34     libbase \
     35     liblog \
     36     vsoc_lib
     37 
     38 LOCAL_CFLAGS += -DLOG_TAG=\"VSoCInputService\" \
     39     -Wall -Werror
     40 
     41 LOCAL_MULTILIB := first
     42 LOCAL_VENDOR_MODULE := true
     43 include $(BUILD_EXECUTABLE)
     44