a94f7642a8
aah_timesrv is a library that provides access to the local clock and the common time service. This is a squashed merge from master-tungsten of the following changes: commit a59f6fce4ad7bb664270b70484958210780a9bdd Author: John Grossman <johngro@google.com> Date: Fri Aug 12 11:49:03 2011 -0700 Adapt to a change in the local time HAL. Changed the definition of the slew function in the local time HAL to take an int16 instead of an int32 and to use the full range of the int instead of attempting to imply any particular PPM range. Change-Id: Ie8825a4f7ae36aeeb2b23a1613f84b1672f37a26 commit f7e0cdac72592be1e24f08803e922f7be696d14b Author: John Grossman <johngro@google.com> Date: Mon Jun 27 17:29:21 2011 -0700 Remove "primary" from the local_time HAL. Interface instances are a pattern which should only be used by audio. Remove its use from the local_time HAL. Change-Id: Ib96faaacc7f5b9f10f4bfd67e491316e99dc3c96 commit a148e2674b1d3cb73289b82b85c333f0a66824a9 Author: John Grossman <johngro@google.com> Date: Mon Jun 20 17:02:24 2011 -0700 Move the A@H time service into frameworks/base Change-Id: I5c570cde70e8931e205516cb33517585804ce841 Change-Id: I0a840e5803f015659d3d21d5be287f98712c75eb Signed-off-by: Mike J. Chen <mjchen@google.com> Signed-off-by: John Grossman <johngro@google.com>
20 lines
495 B
Makefile
20 lines
495 B
Makefile
LOCAL_PATH:= $(call my-dir)
|
|
#
|
|
# libaah_timesrv_client
|
|
# (binder marshalers for ICommonClock as well as common clock and local clock
|
|
# helper code)
|
|
#
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_MODULE := libaah_timesrv_client
|
|
LOCAL_MODULE_TAGS := optional
|
|
LOCAL_SRC_FILES := cc_helper.cpp \
|
|
local_clock.cpp \
|
|
ICommonClock.cpp
|
|
LOCAL_SHARED_LIBRARIES := libbinder \
|
|
libhardware \
|
|
libutils
|
|
|
|
include $(BUILD_SHARED_LIBRARY)
|