26fddcd742
A copy of LinearTransform is moved here. This reverts commit b80f086f69a4bc2e51d1f94ae58d7ba6b20514c4. Test: compile/run Bug: treble cleanup Change-Id: I435cac1f57ded10d434e4354985ad1a1bd3841f3
40 lines
812 B
Makefile
40 lines
812 B
Makefile
LOCAL_PATH:= $(call my-dir)
|
|
|
|
#
|
|
# common_time_service
|
|
#
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_SRC_FILES := \
|
|
common_clock_service.cpp \
|
|
common_time_config_service.cpp \
|
|
common_time_server.cpp \
|
|
common_time_server_api.cpp \
|
|
common_time_server_packets.cpp \
|
|
clock_recovery.cpp \
|
|
common_clock.cpp \
|
|
main.cpp \
|
|
utils.cpp \
|
|
LinearTransform.cpp
|
|
|
|
# Uncomment to enable vesbose logging and debug service.
|
|
#TIME_SERVICE_DEBUG=true
|
|
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 \
|
|
liblog
|
|
|
|
LOCAL_MODULE_TAGS := optional
|
|
LOCAL_MODULE := common_time
|
|
|
|
LOCAL_CFLAGS += -Wall -Werror -Wunused -Wunreachable-code
|
|
|
|
include $(BUILD_EXECUTABLE)
|