summaryrefslogtreecommitdiffstats
path: root/xmlserializer
diff options
context:
space:
mode:
authorKevin Rocard <kevinx.rocard@intel.com>2013-06-24 18:12:18 +0200
committerDavid Wagner <david.wagner@intel.com>2014-02-12 17:03:58 +0100
commit310c4993d94430dfaa790160c15785992131133a (patch)
tree60c98eb9c0e0deb6826d2b5ae8f0bd713cffd2dd /xmlserializer
parent413c3dfd41b74f222d9daae45608d2fe2039d643 (diff)
downloadexternal_parameter-framework-310c4993d94430dfaa790160c15785992131133a.zip
external_parameter-framework-310c4993d94430dfaa790160c15785992131133a.tar.gz
external_parameter-framework-310c4993d94430dfaa790160c15785992131133a.tar.bz2
[Makefile] Format variables to lower_snake_case
BZ: 115743 Some variables where not formatted as requested by the coding style. Format them to lower_snake_case. Change-Id: I31c152f161cde469bcd4c00953e95274c60868ca Signed-off-by: Kevin Rocard <kevinx.rocard@intel.com> Reviewed-on: http://android.intel.com:8080/115175 Reviewed-by: Denneulin, Guillaume <guillaume.denneulin@intel.com> Reviewed-by: De Chivre, Renaud <renaud.de.chivre@intel.com> Tested-by: Dixon, CharlesX <charlesx.dixon@intel.com> Reviewed-by: buildbot <buildbot@intel.com> Tested-by: buildbot <buildbot@intel.com>
Diffstat (limited to 'xmlserializer')
-rw-r--r--xmlserializer/Android.mk46
1 files changed, 23 insertions, 23 deletions
diff --git a/xmlserializer/Android.mk b/xmlserializer/Android.mk
index 2b06440..e71419f 100644
--- a/xmlserializer/Android.mk
+++ b/xmlserializer/Android.mk
@@ -3,7 +3,7 @@ LOCAL_PATH := $(call my-dir)
####################
# Common definitions
-COMMON_SRC_FILES := \
+common_src_files := \
XmlElement.cpp \
XmlSerializingContext.cpp \
XmlDocSource.cpp \
@@ -15,40 +15,40 @@ COMMON_SRC_FILES := \
XmlFileDocSource.cpp \
XmlStringDocSource.cpp
-COMMON_MODULE := libxmlserializer
+common_module := libxmlserializer
-COMMON_MODULE_TAGS := optional
+common_module_tags := optional
-COMMON_C_INCLUDES := \
+common_c_includes := \
external/libxml2/include/ \
external/webkit/Source/WebCore/icu/ \
-COMMON_SHARED_LIBRARIES := libicuuc
-COMMON_STATIC_LIBRARIES := libxml2
+common_shared_libraries := libicuuc
+common_static_libraries := libxml2
-COMMON_LDLIBS := -Lexternal/libxml2/lib
+common_ldlibs := -Lexternal/libxml2/lib
#############################
# Target build
include $(CLEAR_VARS)
-LOCAL_SRC_FILES := $(COMMON_SRC_FILES)
+LOCAL_SRC_FILES := $(common_src_files)
-LOCAL_MODULE := $(COMMON_MODULE)
-LOCAL_MODULE_TAGS := $(COMMON_MODULE_TAGS)
+LOCAL_MODULE := $(common_module)
+LOCAL_MODULE_TAGS := $(common_module_tags)
-LOCAL_CFLAGS += $(COMMON_CFLAGS)
+LOCAL_CFLAGS += $(common_cflags)
LOCAL_C_INCLUDES += \
- $(COMMON_C_INCLUDES) \
+ $(common_c_includes) \
external/stlport/stlport/ \
bionic/
-LOCAL_SHARED_LIBRARIES := $(COMMON_SHARED_LIBRARIES) libstlport
-LOCAL_STATIC_LIBRARIES := $(COMMON_STATIC_LIBRARIES)
+LOCAL_SHARED_LIBRARIES := $(common_shared_libraries) libstlport
+LOCAL_STATIC_LIBRARIES := $(common_static_libraries)
-LOCAL_LDLIBS += $(COMMON_LDLIBS)
+LOCAL_LDLIBS += $(common_ldlibs)
include $(BUILD_STATIC_LIBRARY)
@@ -57,19 +57,19 @@ include $(BUILD_STATIC_LIBRARY)
include $(CLEAR_VARS)
-LOCAL_SRC_FILES := $(COMMON_SRC_FILES)
+LOCAL_SRC_FILES := $(common_src_files)
-LOCAL_MODULE := $(COMMON_MODULE)_host
-LOCAL_MODULE_TAGS := $(COMMON_MODULE_TAGS)
+LOCAL_MODULE := $(common_module)_host
+LOCAL_MODULE_TAGS := $(common_module_tags)
-LOCAL_CFLAGS += $(COMMON_CFLAGS)
+LOCAL_CFLAGS += $(common_cflags)
LOCAL_C_INCLUDES += \
- $(COMMON_C_INCLUDES)
+ $(common_c_includes)
-LOCAL_SHARED_LIBRARIES := $(COMMON_SHARED_LIBRARIES)
-LOCAL_STATIC_LIBRARIES := $(COMMON_STATIC_LIBRARIES)
+LOCAL_SHARED_LIBRARIES := $(common_shared_libraries)
+LOCAL_STATIC_LIBRARIES := $(common_static_libraries)
-LOCAL_LDLIBS += $(COMMON_LDLIBS)
+LOCAL_LDLIBS += $(common_ldlibs)
include $(BUILD_HOST_STATIC_LIBRARY)