1 # Copyright (C) 2016 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_MODULE_PATH := $(TARGET_OUT_SHARED_LIBRARIES)/hw 16 LOCAL_MULTILIB := first 17 LOCAL_MODULE_TAGS := optional 18 LOCAL_VENDOR_MODULE := true 19 20 LOCAL_SHARED_LIBRARIES := \ 21 libbase \ 22 liblog \ 23 libcutils \ 24 libutils \ 25 libsync \ 26 libhardware \ 27 libjpeg \ 28 vsoc_lib \ 29 $(VSOC_STLPORT_LIBS) 30 31 LOCAL_STATIC_LIBRARIES := \ 32 libyuv_static 33 34 LOCAL_SRC_FILES := \ 35 geometry_utils.cpp \ 36 hwcomposer.cpp \ 37 vsoc_composer.cpp \ 38 stats_keeper.cpp \ 39 base_composer.cpp 40 41 LOCAL_CFLAGS += \ 42 -DGATHER_STATS \ 43 $(VSOC_VERSION_CFLAGS) \ 44 -Wall -Werror 45 46 LOCAL_C_INCLUDES := \ 47 device/google/cuttlefish_common \ 48 device/google/cuttlefish_kernel \ 49 external/libyuv/files/include \ 50 bionic \ 51 $(VSOC_STLPORT_INCLUDES) 52