1LOCAL_PATH:= $(call my-dir) 2# 3# libcommon_time_client 4# (binder marshalers for ICommonClock as well as common clock and local clock 5# helper code) 6# 7 8include $(CLEAR_VARS) 9 10LOCAL_MODULE := libcommon_time_client 11LOCAL_MODULE_TAGS := optional 12LOCAL_SRC_FILES := cc_helper.cpp \ 13 local_clock.cpp \ 14 ICommonClock.cpp \ 15 ICommonTimeConfig.cpp \ 16 utils.cpp 17LOCAL_SHARED_LIBRARIES := libbinder \ 18 libhardware \ 19 libutils \ 20 liblog 21 22LOCAL_CFLAGS := -Wall -Werror 23 24include $(BUILD_SHARED_LIBRARY) 25