summaryrefslogtreecommitdiffstats
path: root/Schemas
diff options
context:
space:
mode:
authorMattijs Korpershoek <mattijsx.korpershoek@intel.com>2014-05-13 15:14:36 +0200
committerMattijs Korpershoek <mattijsx.korpershoek@intel.com>2014-06-25 10:52:32 +0200
commit9bf9c30fbf79c25fd1eabefc75d68e0d0dcbd5fd (patch)
tree70c3b032311c38500fc7efcc63ecb800b4d568ea /Schemas
parentd4dbc9b147f2fbcd06b0fbc5e3af45e4aff669b2 (diff)
downloadexternal_parameter-framework-9bf9c30fbf79c25fd1eabefc75d68e0d0dcbd5fd.zip
external_parameter-framework-9bf9c30fbf79c25fd1eabefc75d68e0d0dcbd5fd.tar.gz
external_parameter-framework-9bf9c30fbf79c25fd1eabefc75d68e0d0dcbd5fd.tar.bz2
Removed phony package to copy .xsd files
BZ: 192861 When hostDomainGenerator.sh is called by the build system, it needs to copy schema files to /tmp/tmp.XXXXXXX. This is because parameter-framework needs to have the schema files next to the .xml files in order to apply validation. In order to do that, hostDomainGenerator.sh needs to know where he can copy the .xsd files from. Currently, the .xsd files are copied from $HOST_OUT/etc/parameter-framework/Schemas via a dedicated makefile. This used a phony package to group all the files that have to be copied. The problem is that phony packages the phony package is not calling the prebuildt rules we need. So the files we want to export to /etc/parameter-framework/Schemas are not copied. This patch removes the phony package in order to produce the expected behaviour. Change-Id: I96da56f85a8c3d512fcfb97244181dc6c1cb9401 Signed-off-by: Mattijs Korpershoek <mattijsx.korpershoek@intel.com>
Diffstat (limited to 'Schemas')
-rw-r--r--Schemas/Android.mk13
1 files changed, 0 insertions, 13 deletions
diff --git a/Schemas/Android.mk b/Schemas/Android.mk
index a9346c4..8ebfb3d 100644
--- a/Schemas/Android.mk
+++ b/Schemas/Android.mk
@@ -20,19 +20,6 @@
LOCAL_PATH := $(call my-dir)
-# Phony package containing XSD files
-##################################################
-
-include $(CLEAR_VARS)
-LOCAL_MODULE := parameter-framework.schemas
-LOCAL_IS_HOST_MODULE := true
-LOCAL_MODULE_PATH := $(HOST_OUT)/etc/parameter-framework/Schemas
-LOCAL_REQUIRED_MODULES := \
- ParameterFrameworkConfiguration.xsd \
- ConfigurableDomains.xsd \
- SystemClass.xsd
-include $(BUILD_PHONY_PACKAGE)
-
# Resources are not compiled so the prebuild mechanism is used to export them.
# Schemas are only used by host, in order to validate xml files
##################################################