From: Cary Clark Date: Mon, 16 Aug 2010 17:38:43 +0000 (-0400) Subject: allow building webkit without svg X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=a5f94738e9e3ac08b08dc17e8a07e7803028ab2e;p=android-x86%2Fexternal-webkit.git allow building webkit without svg In Apple's DerivedSources.make, XLinkNames are built all the time. Change our Android.derived.mk to do the same, instead of only building when SVG is enabled. Change-Id: I69d903788e4416e2140068f2aa907d65b336ce68 --- diff --git a/WebCore/Android.derived.mk b/WebCore/Android.derived.mk index a5820a7fd..7a9611b95 100644 --- a/WebCore/Android.derived.mk +++ b/WebCore/Android.derived.mk @@ -163,7 +163,6 @@ LOCAL_GENERATED_SOURCES += $(GEN) # XLink attribute names -ifeq ($(ENABLE_SVG), true) GEN:= $(intermediates)/XLinkNames.cpp $(GEN): PRIVATE_PATH := $(LOCAL_PATH) $(GEN): PRIVATE_CUSTOM_TOOL = perl -I $(PRIVATE_PATH)/bindings/scripts $< --attrs $(xlink_attrs) --output $(dir $@) @@ -171,4 +170,3 @@ $(GEN): xlink_attrs := $(LOCAL_PATH)/svg/xlinkattrs.in $(GEN): $(LOCAL_PATH)/dom/make_names.pl $(xlink_attrs) $(transform-generated-source) LOCAL_GENERATED_SOURCES += $(GEN) -endif