Home | History | Annotate | Download | only in common_time
      1 LOCAL_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 
      8 include $(CLEAR_VARS)
      9 
     10 LOCAL_MODULE := libcommon_time_client
     11 LOCAL_MODULE_TAGS := optional
     12 LOCAL_SRC_FILES := cc_helper.cpp \
     13                    local_clock.cpp \
     14                    ICommonClock.cpp \
     15                    ICommonTimeConfig.cpp \
     16                    utils.cpp
     17 LOCAL_SHARED_LIBRARIES := libbinder \
     18                           libhardware \
     19                           libutils \
     20                           liblog
     21 
     22 LOCAL_CFLAGS := -Wall -Werror
     23 
     24 include $(BUILD_SHARED_LIBRARY)
     25