232f869c99
Bulk name change to remove references to Android@Home from the common time service in preparation for cleanup and up-integration into the master branch. Basically, aah_timesrv is now common_time. Change-Id: I3d3db212f96e8ba171aa36b9c58e27e4a336cb0a
29 lines
494 B
Makefile
29 lines
494 B
Makefile
LOCAL_PATH:= $(call my-dir)
|
|
|
|
#
|
|
# common_time_service
|
|
#
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_SRC_FILES := \
|
|
common_clock_service.cpp \
|
|
common_time_server.cpp \
|
|
clock_recovery.cpp \
|
|
common_clock.cpp
|
|
|
|
ifeq ($(TIME_SERVICE_DEBUG), true)
|
|
LOCAL_SRC_FILES += diag_thread.cpp
|
|
LOCAL_CFLAGS += -DTIME_SERVICE_DEBUG
|
|
endif
|
|
|
|
LOCAL_SHARED_LIBRARIES := \
|
|
libbinder \
|
|
libcommon_time_client \
|
|
libutils
|
|
|
|
LOCAL_MODULE_TAGS := optional
|
|
LOCAL_MODULE := common_time
|
|
|
|
include $(BUILD_EXECUTABLE)
|