diff options
author | David Wagner <david.wagner@intel.com> | 2014-02-14 17:25:08 +0100 |
---|---|---|
committer | David Wagner <david.wagner@intel.com> | 2014-02-14 17:25:08 +0100 |
commit | 34e90ae1c744e1de6547e014326ef54f516439c8 (patch) | |
tree | 2b82c4717cdbc38b7bf7c0f2927ca09faffb5c7d /parameter/Android.mk | |
parent | 6c15c4f3cc9100bc149e2635c33ef443885be925 (diff) | |
download | external_parameter-framework-34e90ae1c744e1de6547e014326ef54f516439c8.zip external_parameter-framework-34e90ae1c744e1de6547e014326ef54f516439c8.tar.gz external_parameter-framework-34e90ae1c744e1de6547e014326ef54f516439c8.tar.bz2 |
Android.mk: Remove the libparameter_includes hack
The plugins' Android.mk will directly access libparameter's include dir.
Signed-off-by: David Wagner <david.wagner@intel.com>
Diffstat (limited to 'parameter/Android.mk')
-rwxr-xr-x | parameter/Android.mk | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/parameter/Android.mk b/parameter/Android.mk index dd0c71d..9541936 100755 --- a/parameter/Android.mk +++ b/parameter/Android.mk @@ -194,36 +194,3 @@ LOCAL_STATIC_LIBRARIES := libxmlserializer_host libpfw_utility_host $(common_sta LOCAL_LDLIBS += -ldl include $(BUILD_HOST_SHARED_LIBRARY) - -################################ -# Export includes for plugins (Target build) - -include $(CLEAR_VARS) - -LOCAL_MODULE := $(common_module)_includes - -LOCAL_EXPORT_C_INCLUDE_DIRS := $(LOCAL_PATH) - -LOCAL_STATIC_LIBRARIES := \ - libxmlserializer \ - libpfw_utility \ - $(common_static_libraries) - -include $(BUILD_STATIC_LIBRARY) - -################################ -# Export includes for plugins (Host build) - -include $(CLEAR_VARS) - -LOCAL_MODULE := $(common_module)_includes_host - -LOCAL_EXPORT_C_INCLUDE_DIRS := $(LOCAL_PATH) - -LOCAL_STATIC_LIBRARIES := \ - libxmlserializer_host \ - libpfw_utility_host \ - $(common_static_libraries) - -include $(BUILD_HOST_STATIC_LIBRARY) - |