summaryrefslogtreecommitdiffstats
path: root/remote-process
diff options
context:
space:
mode:
authorDavid Wagner <david.wagner@intel.com>2014-02-13 10:44:53 +0100
committerDavid Wagner <david.wagner@intel.com>2014-02-13 16:10:37 +0100
commitc3f617e16506b322c1b1c3d4bed7a6e703d9f6d3 (patch)
tree5d360d614d08610430c890c311abdf0613e776cc /remote-process
parentb76c9d6de717a9a1cfd94e7a8eca7ee4a2035cd7 (diff)
downloadexternal_parameter-framework-c3f617e16506b322c1b1c3d4bed7a6e703d9f6d3.zip
external_parameter-framework-c3f617e16506b322c1b1c3d4bed7a6e703d9f6d3.tar.gz
external_parameter-framework-c3f617e16506b322c1b1c3d4bed7a6e703d9f6d3.tar.bz2
Import the 'naive tokenizer' library in libutility
remote-process uses the 'naive tokenizer'. Let's make it part of the utility and make remote-process link against libutility. Signed-off-by: David Wagner <david.wagner@intel.com>
Diffstat (limited to 'remote-process')
-rw-r--r--remote-process/Android.mk5
1 files changed, 3 insertions, 2 deletions
diff --git a/remote-process/Android.mk b/remote-process/Android.mk
index 2facaf7..1bb1be9 100644
--- a/remote-process/Android.mk
+++ b/remote-process/Android.mk
@@ -47,7 +47,7 @@ common_c_includes := \
$(LOCAL_PATH)/../remote-processor/
common_shared_libraries := libremote-processor
-common_static_libraries := libaudiocomms_naive_tokenizer
+common_static_libraries := libutility
#############################
# Target build
@@ -89,6 +89,7 @@ LOCAL_C_INCLUDES += \
LOCAL_SHARED_LIBRARIES := $(foreach shared_library, $(common_shared_libraries), \
$(shared_library)_host)
-LOCAL_STATIC_LIBRARIES := $(common_static_libraries)
+LOCAL_STATIC_LIBRARIES := $(foreach static_library, $(common_static_libraries), \
+ $(static_library)_host)
include $(BUILD_HOST_EXECUTABLE)