| |
| ## |
| ## Copyright 2009, The Android Open Source Project |
| ## |
| ## Redistribution and use in source and binary forms, with or without |
| ## modification, are permitted provided that the following conditions |
| ## are met: |
| ## * Redistributions of source code must retain the above copyright |
| ## notice, this list of conditions and the following disclaimer. |
| ## * Redistributions in binary form must reproduce the above copyright |
| ## notice, this list of conditions and the following disclaimer in the |
| ## documentation and/or other materials provided with the distribution. |
| ## |
| ## THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS ``AS IS'' AND ANY |
| ## EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| ## IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
| ## PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR |
| ## CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, |
| ## EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, |
| ## PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR |
| ## PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY |
| ## OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| ## (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| ## OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| ## |
| |
| # lookup tables for old-style JavaScript bindings |
| create_hash_table := $(LOCAL_PATH)/../JavaScriptCore/create_hash_table |
| |
| GEN := $(addprefix $(intermediates)/, \ |
| bindings/js/JSDOMWindowBase.lut.h \ |
| ) |
| $(GEN): PRIVATE_CUSTOM_TOOL = perl $(create_hash_table) $< > $@ |
| $(GEN): $(intermediates)/bindings/js/%.lut.h: $(LOCAL_PATH)/bindings/js/%.cpp $(create_hash_table) |
| $(transform-generated-source) |
| LOCAL_GENERATED_SOURCES += $(GEN) |
| |
| |
| GEN := $(intermediates)/bindings/js/JSHTMLInputElementBaseTable.cpp |
| $(GEN): PRIVATE_CUSTOM_TOOL = perl $(create_hash_table) $< > $@ |
| $(GEN): $(intermediates)/bindings/js/%Table.cpp: $(LOCAL_PATH)/bindings/js/%.cpp $(create_hash_table) |
| $(transform-generated-source) |
| $(intermediates)/bindings/js/JSHTMLInputElementBase.o : $(GEN) |
| |
| # lookup tables for old-style JavaScript bindings |
| js_binding_scripts := $(addprefix $(LOCAL_PATH)/,\ |
| bindings/scripts/CodeGenerator.pm \ |
| bindings/scripts/IDLParser.pm \ |
| bindings/scripts/IDLStructure.pm \ |
| bindings/scripts/generate-bindings.pl \ |
| ) |
| |
| FEATURE_DEFINES := ENABLE_ORIENTATION_EVENTS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_DATABASE=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_DOM_STORAGE=1 ENABLE_VIDEO=1 ENABLE_GEOLOCATION=1 ENABLE_CONNECTION=1 ENABLE_APPLICATION_INSTALLED=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_DEVICE_ORIENTATION=1 ENABLE_FILE_READER=1 ENABLE_BLOB=1 |
| |
| # CSS |
| GEN := \ |
| $(intermediates)/css/JSCSSCharsetRule.h \ |
| $(intermediates)/css/JSCSSFontFaceRule.h \ |
| $(intermediates)/css/JSCSSImportRule.h \ |
| $(intermediates)/css/JSCSSMediaRule.h \ |
| $(intermediates)/css/JSCSSPageRule.h \ |
| $(intermediates)/css/JSCSSPrimitiveValue.h \ |
| $(intermediates)/css/JSCSSRule.h \ |
| $(intermediates)/css/JSCSSRuleList.h \ |
| $(intermediates)/css/JSCSSStyleDeclaration.h \ |
| $(intermediates)/css/JSCSSStyleRule.h \ |
| $(intermediates)/css/JSCSSStyleSheet.h \ |
| $(intermediates)/css/JSCSSValue.h \ |
| $(intermediates)/css/JSCSSValueList.h \ |
| $(intermediates)/css/JSCSSVariablesDeclaration.h \ |
| $(intermediates)/css/JSCSSVariablesRule.h \ |
| $(intermediates)/css/JSCounter.h \ |
| $(intermediates)/css/JSMediaList.h \ |
| $(intermediates)/css/JSRGBColor.h \ |
| $(intermediates)/css/JSRect.h \ |
| $(intermediates)/css/JSStyleMedia.h \ |
| $(intermediates)/css/JSStyleSheet.h \ |
| $(intermediates)/css/JSStyleSheetList.h \ |
| $(intermediates)/css/JSWebKitCSSKeyframeRule.h \ |
| $(intermediates)/css/JSWebKitCSSKeyframesRule.h \ |
| $(intermediates)/css/JSWebKitCSSMatrix.h \ |
| $(intermediates)/css/JSWebKitCSSTransformValue.h |
| $(GEN): PRIVATE_PATH := $(LOCAL_PATH) |
| $(GEN): PRIVATE_CUSTOM_TOOL = perl -I$(PRIVATE_PATH)/bindings/scripts $(PRIVATE_PATH)/bindings/scripts/generate-bindings.pl --defines "$(FEATURE_DEFINES) LANGUAGE_JAVASCRIPT" --generator JS --include dom --include html --outputdir $(dir $@) $< |
| $(GEN): $(intermediates)/css/JS%.h : $(LOCAL_PATH)/css/%.idl $(js_binding_scripts) |
| $(transform-generated-source) |
| LOCAL_GENERATED_SOURCES += $(GEN) $(GEN:%.h=%.cpp) |
| |
| |
| # We also need the .cpp files, which are generated as side effects of the |
| # above rules. Specifying this explicitly makes -j2 work. |
| $(patsubst %.h,%.cpp,$(GEN)): $(intermediates)/css/%.cpp : $(intermediates)/css/%.h |
| |
| # DOM |
| GEN := \ |
| $(intermediates)/dom/JSAttr.h \ |
| $(intermediates)/dom/JSBeforeLoadEvent.h \ |
| $(intermediates)/dom/JSCDATASection.h \ |
| $(intermediates)/dom/JSCharacterData.h \ |
| $(intermediates)/dom/JSClientRect.h \ |
| $(intermediates)/dom/JSClientRectList.h \ |
| $(intermediates)/dom/JSClipboard.h \ |
| $(intermediates)/dom/JSComment.h \ |
| $(intermediates)/dom/JSCustomEvent.h \ |
| $(intermediates)/dom/JSCompositionEvent.h \ |
| $(intermediates)/dom/JSDOMCoreException.h \ |
| $(intermediates)/dom/JSDOMImplementation.h \ |
| $(intermediates)/dom/JSDOMStringList.h \ |
| $(intermediates)/dom/JSDOMStringMap.h \ |
| $(intermediates)/dom/JSDeviceMotionEvent.h \ |
| $(intermediates)/dom/JSDeviceOrientationEvent.h \ |
| $(intermediates)/dom/JSDocument.h \ |
| $(intermediates)/dom/JSDocumentFragment.h \ |
| $(intermediates)/dom/JSDocumentType.h \ |
| $(intermediates)/dom/JSElement.h \ |
| $(intermediates)/dom/JSEntity.h \ |
| $(intermediates)/dom/JSEntityReference.h \ |
| $(intermediates)/dom/JSErrorEvent.h \ |
| $(intermediates)/dom/JSEvent.h \ |
| $(intermediates)/dom/JSEventException.h \ |
| $(intermediates)/dom/JSKeyboardEvent.h \ |
| $(intermediates)/dom/JSMessageChannel.h \ |
| $(intermediates)/dom/JSMessageEvent.h \ |
| $(intermediates)/dom/JSMessagePort.h \ |
| $(intermediates)/dom/JSMouseEvent.h \ |
| $(intermediates)/dom/JSMutationEvent.h \ |
| $(intermediates)/dom/JSNamedNodeMap.h \ |
| $(intermediates)/dom/JSNode.h \ |
| $(intermediates)/dom/JSNodeFilter.h \ |
| $(intermediates)/dom/JSNodeIterator.h \ |
| $(intermediates)/dom/JSNodeList.h \ |
| $(intermediates)/dom/JSNotation.h \ |
| $(intermediates)/dom/JSOverflowEvent.h \ |
| $(intermediates)/dom/JSPageTransitionEvent.h \ |
| $(intermediates)/dom/JSPopStateEvent.h \ |
| $(intermediates)/dom/JSProcessingInstruction.h \ |
| $(intermediates)/dom/JSProgressEvent.h \ |
| $(intermediates)/dom/JSRange.h \ |
| $(intermediates)/dom/JSRangeException.h \ |
| $(intermediates)/dom/JSText.h \ |
| $(intermediates)/dom/JSTextEvent.h \ |
| $(intermediates)/dom/JSTouch.h \ |
| $(intermediates)/dom/JSTouchEvent.h \ |
| $(intermediates)/dom/JSTouchList.h \ |
| $(intermediates)/dom/JSTreeWalker.h \ |
| $(intermediates)/dom/JSUIEvent.h \ |
| $(intermediates)/dom/JSWebKitAnimationEvent.h \ |
| $(intermediates)/dom/JSWebKitTransitionEvent.h \ |
| $(intermediates)/dom/JSWheelEvent.h |
| $(GEN): PRIVATE_PATH := $(LOCAL_PATH) |
| $(GEN): PRIVATE_CUSTOM_TOOL = perl -I$(PRIVATE_PATH)/bindings/scripts $(PRIVATE_PATH)/bindings/scripts/generate-bindings.pl --defines "$(FEATURE_DEFINES) LANGUAGE_JAVASCRIPT" --generator JS --include dom --include html --outputdir $(dir $@) $< |
| $(GEN): $(intermediates)/dom/JS%.h : $(LOCAL_PATH)/dom/%.idl $(js_binding_scripts) |
| $(transform-generated-source) |
| LOCAL_GENERATED_SOURCES += $(GEN) $(GEN:%.h=%.cpp) |
| |
| # We also need the .cpp files, which are generated as side effects of the |
| # above rules. Specifying this explicitly makes -j2 work. |
| $(patsubst %.h,%.cpp,$(GEN)): $(intermediates)/dom/%.cpp : $(intermediates)/dom/%.h |
| |
| # Fileapi |
| GEN := \ |
| $(intermediates)/fileapi/JSBlob.h \ |
| $(intermediates)/fileapi/JSBlobBuilder.h \ |
| $(intermediates)/fileapi/JSFile.h \ |
| $(intermediates)/fileapi/JSFileError.h \ |
| $(intermediates)/fileapi/JSFileList.h \ |
| $(intermediates)/fileapi/JSFileReader.h |
| $(GEN): PRIVATE_PATH := $(LOCAL_PATH) |
| $(GEN): PRIVATE_CUSTOM_TOOL = perl -I$(PRIVATE_PATH)/bindings/scripts $(PRIVATE_PATH)/bindings/scripts/generate-bindings.pl --defines "$(FEATURE_DEFINES) LANGUAGE_JAVASCRIPT" --generator JS --include dom --include html --include fileapi --outputdir $(dir $@) $< |
| $(GEN): $(intermediates)/fileapi/JS%.h : $(LOCAL_PATH)/fileapi/%.idl $(js_binding_scripts) |
| $(transform-generated-source) |
| LOCAL_GENERATED_SOURCES += $(GEN) $(GEN:%.h=%.cpp) |
| |
| # We also need the .cpp files, which are generated as side effects of the |
| # above rules. Specifying this explicitly makes -j2 work. |
| $(patsubst %.h,%.cpp,$(GEN)): $(intermediates)/fileapi/%.cpp : $(intermediates)/fileapi/%.h |
| |
| # HTML |
| GEN := \ |
| $(intermediates)/html/JSDOMFormData.h \ |
| $(intermediates)/html/JSDataGridColumn.h \ |
| $(intermediates)/html/JSDataGridColumnList.h \ |
| $(intermediates)/html/JSHTMLAllCollection.h \ |
| $(intermediates)/html/JSHTMLAnchorElement.h \ |
| $(intermediates)/html/JSHTMLAppletElement.h \ |
| $(intermediates)/html/JSHTMLAreaElement.h \ |
| $(intermediates)/html/JSHTMLAudioElement.h \ |
| $(intermediates)/html/JSHTMLBRElement.h \ |
| $(intermediates)/html/JSHTMLBaseElement.h \ |
| $(intermediates)/html/JSHTMLBaseFontElement.h \ |
| $(intermediates)/html/JSHTMLBlockquoteElement.h \ |
| $(intermediates)/html/JSHTMLBodyElement.h \ |
| $(intermediates)/html/JSHTMLButtonElement.h \ |
| $(intermediates)/html/JSHTMLCanvasElement.h \ |
| $(intermediates)/html/JSHTMLCollection.h \ |
| $(intermediates)/html/JSHTMLDataGridElement.h \ |
| $(intermediates)/html/JSHTMLDataGridCellElement.h \ |
| $(intermediates)/html/JSHTMLDataGridColElement.h \ |
| $(intermediates)/html/JSHTMLDataGridRowElement.h \ |
| $(intermediates)/html/JSHTMLDataListElement.h \ |
| $(intermediates)/html/JSHTMLDListElement.h \ |
| $(intermediates)/html/JSHTMLDirectoryElement.h \ |
| $(intermediates)/html/JSHTMLDivElement.h \ |
| $(intermediates)/html/JSHTMLDocument.h \ |
| $(intermediates)/html/JSHTMLElement.h \ |
| $(intermediates)/html/JSHTMLEmbedElement.h \ |
| $(intermediates)/html/JSHTMLFieldSetElement.h \ |
| $(intermediates)/html/JSHTMLFontElement.h \ |
| $(intermediates)/html/JSHTMLFormElement.h \ |
| $(intermediates)/html/JSHTMLFrameElement.h \ |
| $(intermediates)/html/JSHTMLFrameSetElement.h \ |
| $(intermediates)/html/JSHTMLHRElement.h \ |
| $(intermediates)/html/JSHTMLHeadElement.h \ |
| $(intermediates)/html/JSHTMLHeadingElement.h \ |
| $(intermediates)/html/JSHTMLHtmlElement.h \ |
| $(intermediates)/html/JSHTMLIFrameElement.h \ |
| $(intermediates)/html/JSHTMLImageElement.h \ |
| $(intermediates)/html/JSHTMLInputElement.h \ |
| $(intermediates)/html/JSHTMLIsIndexElement.h \ |
| $(intermediates)/html/JSHTMLLIElement.h \ |
| $(intermediates)/html/JSHTMLLabelElement.h \ |
| $(intermediates)/html/JSHTMLLegendElement.h \ |
| $(intermediates)/html/JSHTMLLinkElement.h \ |
| $(intermediates)/html/JSHTMLMapElement.h \ |
| $(intermediates)/html/JSHTMLMarqueeElement.h \ |
| $(intermediates)/html/JSHTMLMediaElement.h \ |
| $(intermediates)/html/JSHTMLMenuElement.h \ |
| $(intermediates)/html/JSHTMLMetaElement.h \ |
| $(intermediates)/html/JSHTMLMeterElement.h \ |
| $(intermediates)/html/JSHTMLModElement.h \ |
| $(intermediates)/html/JSHTMLOListElement.h \ |
| $(intermediates)/html/JSHTMLObjectElement.h \ |
| $(intermediates)/html/JSHTMLOptGroupElement.h \ |
| $(intermediates)/html/JSHTMLOptionElement.h \ |
| $(intermediates)/html/JSHTMLOptionsCollection.h \ |
| $(intermediates)/html/JSHTMLParagraphElement.h \ |
| $(intermediates)/html/JSHTMLParamElement.h \ |
| $(intermediates)/html/JSHTMLPreElement.h \ |
| $(intermediates)/html/JSHTMLProgressElement.h \ |
| $(intermediates)/html/JSHTMLQuoteElement.h \ |
| $(intermediates)/html/JSHTMLScriptElement.h \ |
| $(intermediates)/html/JSHTMLSelectElement.h \ |
| $(intermediates)/html/JSHTMLSourceElement.h \ |
| $(intermediates)/html/JSHTMLStyleElement.h \ |
| $(intermediates)/html/JSHTMLTableCaptionElement.h \ |
| $(intermediates)/html/JSHTMLTableCellElement.h \ |
| $(intermediates)/html/JSHTMLTableColElement.h \ |
| $(intermediates)/html/JSHTMLTableElement.h \ |
| $(intermediates)/html/JSHTMLTableRowElement.h \ |
| $(intermediates)/html/JSHTMLTableSectionElement.h \ |
| $(intermediates)/html/JSHTMLTextAreaElement.h \ |
| $(intermediates)/html/JSHTMLTitleElement.h \ |
| $(intermediates)/html/JSHTMLUListElement.h \ |
| $(intermediates)/html/JSHTMLVideoElement.h \ |
| $(intermediates)/html/JSImageData.h \ |
| $(intermediates)/html/JSMediaError.h \ |
| $(intermediates)/html/JSTextMetrics.h \ |
| $(intermediates)/html/JSTimeRanges.h \ |
| $(intermediates)/html/JSValidityState.h \ |
| $(intermediates)/html/JSVoidCallback.h |
| |
| $(GEN): PRIVATE_PATH := $(LOCAL_PATH) |
| $(GEN): PRIVATE_CUSTOM_TOOL = perl -I$(PRIVATE_PATH)/bindings/scripts $(PRIVATE_PATH)/bindings/scripts/generate-bindings.pl --defines "$(FEATURE_DEFINES) LANGUAGE_JAVASCRIPT" --generator JS --include dom --include html --outputdir $(dir $@) $< |
| $(GEN): $(intermediates)/html/JS%.h : $(LOCAL_PATH)/html/%.idl $(js_binding_scripts) |
| $(transform-generated-source) |
| LOCAL_GENERATED_SOURCES += $(GEN) $(GEN:%.h=%.cpp) |
| |
| # We also need the .cpp files, which are generated as side effects of the |
| # above rules. Specifying this explicitly makes -j2 work. |
| $(patsubst %.h,%.cpp,$(GEN)): $(intermediates)/html/%.cpp : $(intermediates)/html/%.h |
| |
| # Canvas |
| GEN := \ |
| $(intermediates)/html/canvas/JSArrayBuffer.h \ |
| $(intermediates)/html/canvas/JSCanvasGradient.h \ |
| $(intermediates)/html/canvas/JSCanvasPattern.h \ |
| $(intermediates)/html/canvas/JSCanvasRenderingContext.h \ |
| $(intermediates)/html/canvas/JSCanvasRenderingContext2D.h \ |
| $(intermediates)/html/canvas/JSFloat32Array.h \ |
| $(intermediates)/html/canvas/JSInt8Array.h \ |
| $(intermediates)/html/canvas/JSInt16Array.h \ |
| $(intermediates)/html/canvas/JSInt32Array.h \ |
| $(intermediates)/html/canvas/JSUint8Array.h \ |
| $(intermediates)/html/canvas/JSUint16Array.h \ |
| $(intermediates)/html/canvas/JSUint32Array.h \ |
| $(intermediates)/html/canvas/JSWebGLRenderingContext.h \ |
| |
| $(GEN): PRIVATE_PATH := $(LOCAL_PATH) |
| $(GEN): PRIVATE_CUSTOM_TOOL = perl -I$(PRIVATE_PATH)/bindings/scripts $(PRIVATE_PATH)/bindings/scripts/generate-bindings.pl --defines "$(FEATURE_DEFINES) LANGUAGE_JAVASCRIPT" --generator JS --include dom --include html --outputdir $(dir $@) $< |
| $(GEN): $(intermediates)/html/canvas/JS%.h : $(LOCAL_PATH)/html/canvas/%.idl $(js_binding_scripts) |
| $(transform-generated-source) |
| LOCAL_GENERATED_SOURCES += $(GEN) $(GEN:%.h=%.cpp) |
| |
| # We also need the .cpp files, which are generated as side effects of the |
| # above rules. Specifying this explicitly makes -j2 work. |
| $(patsubst %.h,%.cpp,$(GEN)): $(intermediates)/html/canvas/%.cpp : $(intermediates)/html/canvas/%.h |
| |
| # Appcache |
| GEN := \ |
| $(intermediates)/loader/appcache/JSDOMApplicationCache.h |
| |
| $(GEN): PRIVATE_PATH := $(LOCAL_PATH) |
| $(GEN): PRIVATE_CUSTOM_TOOL = perl -I$(PRIVATE_PATH)/bindings/scripts $(PRIVATE_PATH)/bindings/scripts/generate-bindings.pl --defines "$(FEATURE_DEFINES) LANGUAGE_JAVASCRIPT" --generator JS --include dom --include html --outputdir $(dir $@) $< |
| $(GEN): $(intermediates)/loader/appcache/JS%.h : $(LOCAL_PATH)/loader/appcache/%.idl $(js_binding_scripts) |
| $(transform-generated-source) |
| LOCAL_GENERATED_SOURCES += $(GEN) $(GEN:%.h=%.cpp) |
| |
| # We also need the .cpp files, which are generated as side effects of the |
| # above rules. Specifying this explicitly makes -j2 work. |
| $(patsubst %.h,%.cpp,$(GEN)): $(intermediates)/loader/appcache/%.cpp : $(intermediates)/loader/appcache/%.h |
| |
| # page |
| GEN := \ |
| $(intermediates)/page/JSBarInfo.h \ |
| $(intermediates)/page/JSConnection.h \ |
| $(intermediates)/page/JSConsole.h \ |
| $(intermediates)/page/JSCoordinates.h \ |
| $(intermediates)/page/JSDOMSelection.h \ |
| $(intermediates)/page/JSDOMWindow.h \ |
| $(intermediates)/page/JSEventSource.h \ |
| $(intermediates)/page/JSGeolocation.h \ |
| $(intermediates)/page/JSGeoposition.h \ |
| $(intermediates)/page/JSHistory.h \ |
| $(intermediates)/page/JSLocation.h \ |
| $(intermediates)/page/JSMemoryInfo.h \ |
| $(intermediates)/page/JSNavigator.h \ |
| $(intermediates)/page/JSPositionError.h \ |
| $(intermediates)/page/JSScreen.h \ |
| $(intermediates)/page/JSWebKitPoint.h \ |
| $(intermediates)/page/JSWorkerNavigator.h |
| |
| $(GEN): PRIVATE_PATH := $(LOCAL_PATH) |
| $(GEN): PRIVATE_CUSTOM_TOOL = perl -I$(PRIVATE_PATH)/bindings/scripts $(PRIVATE_PATH)/bindings/scripts/generate-bindings.pl --defines "$(FEATURE_DEFINES) LANGUAGE_JAVASCRIPT" --generator JS --include dom --include html --outputdir $(dir $@) $< |
| $(GEN): $(intermediates)/page/JS%.h : $(LOCAL_PATH)/page/%.idl $(js_binding_scripts) |
| $(transform-generated-source) |
| LOCAL_GENERATED_SOURCES += $(GEN) $(GEN:%.h=%.cpp) |
| |
| # We also need the .cpp files, which are generated as side effects of the |
| # above rules. Specifying this explicitly makes -j2 work. |
| $(patsubst %.h,%.cpp,$(GEN)): $(intermediates)/page/%.cpp : $(intermediates)/page/%.h |
| |
| GEN := \ |
| $(intermediates)/plugins/JSDOMMimeType.h \ |
| $(intermediates)/plugins/JSDOMMimeTypeArray.h \ |
| $(intermediates)/plugins/JSDOMPlugin.h \ |
| $(intermediates)/plugins/JSDOMPluginArray.h |
| |
| $(GEN): PRIVATE_PATH := $(LOCAL_PATH) |
| $(GEN): PRIVATE_CUSTOM_TOOL = perl -I$(PRIVATE_PATH)/bindings/scripts $(PRIVATE_PATH)/bindings/scripts/generate-bindings.pl --defines "$(FEATURE_DEFINES) LANGUAGE_JAVASCRIPT" --generator JS --include dom --include html --outputdir $(dir $@) $< |
| $(GEN): $(intermediates)/plugins/JS%.h : $(LOCAL_PATH)/plugins/%.idl $(js_binding_scripts) |
| $(transform-generated-source) |
| LOCAL_GENERATED_SOURCES += $(GEN) $(GEN:%.h=%.cpp) |
| |
| # We also need the .cpp files, which are generated as side effects of the |
| # above rules. Specifying this explicitly makes -j2 work. |
| $(patsubst %.h,%.cpp,$(GEN)): $(intermediates)/plugins/%.cpp : $(intermediates)/plugins/%.h |
| |
| # Database |
| GEN := \ |
| $(intermediates)/storage/JSDatabase.h \ |
| $(intermediates)/storage/JSDatabaseCallback.h \ |
| $(intermediates)/storage/JSDatabaseSync.h \ |
| $(intermediates)/storage/JSSQLError.h \ |
| $(intermediates)/storage/JSSQLException.h \ |
| $(intermediates)/storage/JSSQLResultSet.h \ |
| $(intermediates)/storage/JSSQLResultSetRowList.h \ |
| $(intermediates)/storage/JSSQLStatementCallback.h \ |
| $(intermediates)/storage/JSSQLStatementErrorCallback.h \ |
| $(intermediates)/storage/JSSQLTransaction.h \ |
| $(intermediates)/storage/JSSQLTransactionCallback.h \ |
| $(intermediates)/storage/JSSQLTransactionSync.h \ |
| $(intermediates)/storage/JSSQLTransactionSyncCallback.h \ |
| $(intermediates)/storage/JSSQLTransactionErrorCallback.h |
| |
| $(GEN): PRIVATE_PATH := $(LOCAL_PATH) |
| $(GEN): PRIVATE_CUSTOM_TOOL = perl -I$(PRIVATE_PATH)/bindings/scripts $(PRIVATE_PATH)/bindings/scripts/generate-bindings.pl --defines "$(FEATURE_DEFINES) LANGUAGE_JAVASCRIPT" --generator JS --include dom --include html --include storage --outputdir $(dir $@) $< |
| $(GEN): $(intermediates)/storage/JS%.h : $(LOCAL_PATH)/storage/%.idl $(js_binding_scripts) |
| $(transform-generated-source) |
| LOCAL_GENERATED_SOURCES += $(GEN) $(GEN:%.h=%.cpp) |
| |
| # We also need the .cpp files, which are generated as side effects of the |
| # above rules. Specifying this explicitly makes -j2 work. |
| $(patsubst %.h,%.cpp,$(GEN)): $(intermediates)/storage/%.cpp : $(intermediates)/storage/%.h |
| |
| # DOM Storage |
| GEN := \ |
| $(intermediates)/storage/JSStorage.h \ |
| $(intermediates)/storage/JSStorageEvent.h |
| |
| $(GEN): PRIVATE_PATH := $(LOCAL_PATH) |
| $(GEN): PRIVATE_CUSTOM_TOOL = perl -I$(PRIVATE_PATH)/bindings/scripts $(PRIVATE_PATH)/bindings/scripts/generate-bindings.pl --defines "$(FEATURE_DEFINES) LANGUAGE_JAVASCRIPT" --generator JS --include dom --include html --outputdir $(dir $@) $< |
| $(GEN): $(intermediates)/storage/JS%.h : $(LOCAL_PATH)/storage/%.idl $(js_binding_scripts) |
| $(transform-generated-source) |
| LOCAL_GENERATED_SOURCES += $(GEN) $(GEN:%.h=%.cpp) |
| |
| # We also need the .cpp files, which are generated as side effects of the |
| # above rules. Specifying this explicitly makes -j2 work. |
| $(patsubst %.h,%.cpp,$(GEN)): $(intermediates)/storage/%.cpp : $(intermediates)/storage/%.h |
| |
| # Indexed Database |
| GEN := \ |
| $(intermediates)/storage/JSIDBAny.h \ |
| $(intermediates)/storage/JSIDBCursor.h \ |
| $(intermediates)/storage/JSIDBDatabaseError.h \ |
| $(intermediates)/storage/JSIDBDatabaseException.h \ |
| $(intermediates)/storage/JSIDBDatabase.h \ |
| $(intermediates)/storage/JSIDBErrorEvent.h \ |
| $(intermediates)/storage/JSIDBEvent.h \ |
| $(intermediates)/storage/JSIDBFactory.h \ |
| $(intermediates)/storage/JSIDBIndex.h \ |
| $(intermediates)/storage/JSIDBKey.h \ |
| $(intermediates)/storage/JSIDBKeyRange.h \ |
| $(intermediates)/storage/JSIDBObjectStore.h \ |
| $(intermediates)/storage/JSIDBRequest.h \ |
| $(intermediates)/storage/JSIDBSuccessEvent.h \ |
| $(intermediates)/storage/JSIDBTransaction.h |
| |
| $(GEN): PRIVATE_PATH := $(LOCAL_PATH) |
| $(GEN): PRIVATE_CUSTOM_TOOL = perl -I$(PRIVATE_PATH)/bindings/scripts $(PRIVATE_PATH)/bindings/scripts/generate-bindings.pl --defines "$(FEATURE_DEFINES) LANGUAGE_JAVASCRIPT" --generator JS --include dom --include html --include storage --outputdir $(dir $@) $< |
| $(GEN): $(intermediates)/storage/JS%.h : $(LOCAL_PATH)/storage/%.idl $(js_binding_scripts) |
| $(transform-generated-source) |
| LOCAL_GENERATED_SOURCES += $(GEN) $(GEN:%.h=%.cpp) |
| |
| # We also need the .cpp files, which are generated as side effects of the |
| # above rules. Specifying this explicitly makes -j2 work. |
| $(patsubst %.h,%.cpp,$(GEN)): $(intermediates)/storage/%.cpp : $(intermediates)/storage/%.h |
| |
| # SVG |
| ifeq ($(ENABLE_SVG), true) |
| GEN := \ |
| $(intermediates)/svg/JSSVGAElement.h \ |
| $(intermediates)/svg/JSSVGAltGlyphElement.h \ |
| $(intermediates)/svg/JSSVGAngle.h \ |
| $(intermediates)/svg/JSSVGAnimateColorElement.h \ |
| $(intermediates)/svg/JSSVGAnimateElement.h \ |
| $(intermediates)/svg/JSSVGAnimateTransformElement.h \ |
| $(intermediates)/svg/JSSVGAnimatedAngle.h \ |
| $(intermediates)/svg/JSSVGAnimatedBoolean.h \ |
| $(intermediates)/svg/JSSVGAnimatedEnumeration.h \ |
| $(intermediates)/svg/JSSVGAnimatedInteger.h \ |
| $(intermediates)/svg/JSSVGAnimatedLength.h \ |
| $(intermediates)/svg/JSSVGAnimatedLengthList.h \ |
| $(intermediates)/svg/JSSVGAnimatedNumber.h \ |
| $(intermediates)/svg/JSSVGAnimatedNumberList.h \ |
| $(intermediates)/svg/JSSVGAnimatedPreserveAspectRatio.h \ |
| $(intermediates)/svg/JSSVGAnimatedRect.h \ |
| $(intermediates)/svg/JSSVGAnimatedString.h \ |
| $(intermediates)/svg/JSSVGAnimatedTransformList.h \ |
| $(intermediates)/svg/JSSVGAnimationElement.h \ |
| $(intermediates)/svg/JSSVGCircleElement.h \ |
| $(intermediates)/svg/JSSVGClipPathElement.h \ |
| $(intermediates)/svg/JSSVGColor.h \ |
| $(intermediates)/svg/JSSVGComponentTransferFunctionElement.h \ |
| $(intermediates)/svg/JSSVGCursorElement.h \ |
| $(intermediates)/svg/JSSVGDefsElement.h \ |
| $(intermediates)/svg/JSSVGDescElement.h \ |
| $(intermediates)/svg/JSSVGDocument.h \ |
| $(intermediates)/svg/JSSVGElement.h \ |
| $(intermediates)/svg/JSSVGElementInstance.h \ |
| $(intermediates)/svg/JSSVGElementInstanceList.h \ |
| $(intermediates)/svg/JSSVGEllipseElement.h \ |
| $(intermediates)/svg/JSSVGException.h \ |
| $(intermediates)/svg/JSSVGFEBlendElement.h \ |
| $(intermediates)/svg/JSSVGFEColorMatrixElement.h \ |
| $(intermediates)/svg/JSSVGFEComponentTransferElement.h \ |
| $(intermediates)/svg/JSSVGFECompositeElement.h \ |
| $(intermediates)/svg/JSSVGFEConvolveMatrixElement.h \ |
| $(intermediates)/svg/JSSVGFEDiffuseLightingElement.h \ |
| $(intermediates)/svg/JSSVGFEDisplacementMapElement.h \ |
| $(intermediates)/svg/JSSVGFEDistantLightElement.h \ |
| $(intermediates)/svg/JSSVGFEFloodElement.h \ |
| $(intermediates)/svg/JSSVGFEFuncAElement.h \ |
| $(intermediates)/svg/JSSVGFEFuncBElement.h \ |
| $(intermediates)/svg/JSSVGFEFuncGElement.h \ |
| $(intermediates)/svg/JSSVGFEFuncRElement.h \ |
| $(intermediates)/svg/JSSVGFEGaussianBlurElement.h \ |
| $(intermediates)/svg/JSSVGFEImageElement.h \ |
| $(intermediates)/svg/JSSVGFEMergeElement.h \ |
| $(intermediates)/svg/JSSVGFEMergeNodeElement.h \ |
| $(intermediates)/svg/JSSVGFEOffsetElement.h \ |
| $(intermediates)/svg/JSSVGFEPointLightElement.h \ |
| $(intermediates)/svg/JSSVGFESpecularLightingElement.h \ |
| $(intermediates)/svg/JSSVGFESpotLightElement.h \ |
| $(intermediates)/svg/JSSVGFETileElement.h \ |
| $(intermediates)/svg/JSSVGFETurbulenceElement.h \ |
| $(intermediates)/svg/JSSVGFilterElement.h \ |
| $(intermediates)/svg/JSSVGFontElement.h \ |
| $(intermediates)/svg/JSSVGFontFaceElement.h \ |
| $(intermediates)/svg/JSSVGFontFaceFormatElement.h \ |
| $(intermediates)/svg/JSSVGFontFaceNameElement.h \ |
| $(intermediates)/svg/JSSVGFontFaceSrcElement.h \ |
| $(intermediates)/svg/JSSVGFontFaceUriElement.h \ |
| $(intermediates)/svg/JSSVGForeignObjectElement.h \ |
| $(intermediates)/svg/JSSVGGElement.h \ |
| $(intermediates)/svg/JSSVGGlyphElement.h \ |
| $(intermediates)/svg/JSSVGGradientElement.h \ |
| $(intermediates)/svg/JSSVGHKernElement.h \ |
| $(intermediates)/svg/JSSVGImageElement.h \ |
| $(intermediates)/svg/JSSVGLength.h \ |
| $(intermediates)/svg/JSSVGLengthList.h \ |
| $(intermediates)/svg/JSSVGLineElement.h \ |
| $(intermediates)/svg/JSSVGLinearGradientElement.h \ |
| $(intermediates)/svg/JSSVGMarkerElement.h \ |
| $(intermediates)/svg/JSSVGMaskElement.h \ |
| $(intermediates)/svg/JSSVGMatrix.h \ |
| $(intermediates)/svg/JSSVGMetadataElement.h \ |
| $(intermediates)/svg/JSSVGMissingGlyphElement.h \ |
| $(intermediates)/svg/JSSVGNumber.h \ |
| $(intermediates)/svg/JSSVGNumberList.h \ |
| $(intermediates)/svg/JSSVGPaint.h \ |
| $(intermediates)/svg/JSSVGPathElement.h \ |
| $(intermediates)/svg/JSSVGPathSeg.h \ |
| $(intermediates)/svg/JSSVGPathSegArcAbs.h \ |
| $(intermediates)/svg/JSSVGPathSegArcRel.h \ |
| $(intermediates)/svg/JSSVGPathSegClosePath.h \ |
| $(intermediates)/svg/JSSVGPathSegCurvetoCubicAbs.h \ |
| $(intermediates)/svg/JSSVGPathSegCurvetoCubicRel.h \ |
| $(intermediates)/svg/JSSVGPathSegCurvetoCubicSmoothAbs.h \ |
| $(intermediates)/svg/JSSVGPathSegCurvetoCubicSmoothRel.h \ |
| $(intermediates)/svg/JSSVGPathSegCurvetoQuadraticAbs.h \ |
| $(intermediates)/svg/JSSVGPathSegCurvetoQuadraticRel.h \ |
| $(intermediates)/svg/JSSVGPathSegCurvetoQuadraticSmoothAbs.h \ |
| $(intermediates)/svg/JSSVGPathSegCurvetoQuadraticSmoothRel.h \ |
| $(intermediates)/svg/JSSVGPathSegLinetoAbs.h \ |
| $(intermediates)/svg/JSSVGPathSegLinetoHorizontalAbs.h \ |
| $(intermediates)/svg/JSSVGPathSegLinetoHorizontalRel.h \ |
| $(intermediates)/svg/JSSVGPathSegLinetoRel.h \ |
| $(intermediates)/svg/JSSVGPathSegLinetoVerticalAbs.h \ |
| $(intermediates)/svg/JSSVGPathSegLinetoVerticalRel.h \ |
| $(intermediates)/svg/JSSVGPathSegList.h \ |
| $(intermediates)/svg/JSSVGPathSegMovetoAbs.h \ |
| $(intermediates)/svg/JSSVGPathSegMovetoRel.h \ |
| $(intermediates)/svg/JSSVGPatternElement.h \ |
| $(intermediates)/svg/JSSVGPoint.h \ |
| $(intermediates)/svg/JSSVGPointList.h \ |
| $(intermediates)/svg/JSSVGPolygonElement.h \ |
| $(intermediates)/svg/JSSVGPolylineElement.h \ |
| $(intermediates)/svg/JSSVGPreserveAspectRatio.h \ |
| $(intermediates)/svg/JSSVGRadialGradientElement.h \ |
| $(intermediates)/svg/JSSVGRect.h \ |
| $(intermediates)/svg/JSSVGRectElement.h \ |
| $(intermediates)/svg/JSSVGRenderingIntent.h \ |
| $(intermediates)/svg/JSSVGSVGElement.h \ |
| $(intermediates)/svg/JSSVGScriptElement.h \ |
| $(intermediates)/svg/JSSVGSetElement.h \ |
| $(intermediates)/svg/JSSVGStopElement.h \ |
| $(intermediates)/svg/JSSVGStringList.h \ |
| $(intermediates)/svg/JSSVGStyleElement.h \ |
| $(intermediates)/svg/JSSVGSwitchElement.h \ |
| $(intermediates)/svg/JSSVGSymbolElement.h \ |
| $(intermediates)/svg/JSSVGTRefElement.h \ |
| $(intermediates)/svg/JSSVGTSpanElement.h \ |
| $(intermediates)/svg/JSSVGTextContentElement.h \ |
| $(intermediates)/svg/JSSVGTextElement.h \ |
| $(intermediates)/svg/JSSVGTextPathElement.h \ |
| $(intermediates)/svg/JSSVGTextPositioningElement.h \ |
| $(intermediates)/svg/JSSVGTitleElement.h \ |
| $(intermediates)/svg/JSSVGTransform.h \ |
| $(intermediates)/svg/JSSVGTransformList.h \ |
| $(intermediates)/svg/JSSVGUnitTypes.h \ |
| $(intermediates)/svg/JSSVGUseElement.h \ |
| $(intermediates)/svg/JSSVGViewElement.h \ |
| $(intermediates)/svg/JSSVGVKernElement.h \ |
| $(intermediates)/svg/JSSVGZoomEvent.h |
| $(GEN): PRIVATE_PATH := $(LOCAL_PATH) |
| $(GEN): PRIVATE_CUSTOM_TOOL = perl -I$(PRIVATE_PATH)/bindings/scripts $(PRIVATE_PATH)/bindings/scripts/generate-bindings.pl --defines "$(FEATURE_DEFINES) LANGUAGE_JAVASCRIPT" --generator JS --include external/webkit/WebCore/dom --include external/webkit/WebCore/html --include external/webkit/WebCore/svg --outputdir $(dir $@) $< |
| $(GEN): $(intermediates)/svg/JS%.h : $(LOCAL_PATH)/svg/%.idl $(js_binding_scripts) |
| $(transform-generated-source) |
| LOCAL_GENERATED_SOURCES += $(GEN) $(GEN:%.h=%.cpp) |
| |
| # We also need the .cpp files, which are generated as side effects of the |
| # above rules. Specifying this explicitly makes -j2 work. |
| $(patsubst %.h,%.cpp,$(GEN)): $(intermediates)/svg/%.cpp : $(intermediates)/svg/%.h |
| endif |
| |
| # Workers |
| GEN := \ |
| $(intermediates)/workers/JSAbstractWorker.h \ |
| $(intermediates)/workers/JSDedicatedWorkerContext.h \ |
| $(intermediates)/workers/JSSharedWorker.h \ |
| $(intermediates)/workers/JSSharedWorkerContext.h \ |
| $(intermediates)/workers/JSWorker.h \ |
| $(intermediates)/workers/JSWorkerContext.h \ |
| $(intermediates)/workers/JSWorkerLocation.h |
| |
| $(GEN): PRIVATE_PATH := $(LOCAL_PATH) |
| $(GEN): PRIVATE_CUSTOM_TOOL = perl -I$(PRIVATE_PATH)/bindings/scripts $(PRIVATE_PATH)/bindings/scripts/generate-bindings.pl --defines "$(FEATURE_DEFINES) LANGUAGE_JAVASCRIPT" --generator JS --include dom --include html --outputdir $(dir $@) $< |
| $(GEN): $(intermediates)/workers/JS%.h : $(LOCAL_PATH)/workers/%.idl $(js_binding_scripts) |
| $(transform-generated-source) |
| LOCAL_GENERATED_SOURCES += $(GEN) $(GEN:%.h=%.cpp) |
| |
| # We also need the .cpp files, which are generated as side effects of the |
| # above rules. Specifying this explicitly makes -j2 work. |
| $(patsubst %.h,%.cpp,$(GEN)): $(intermediates)/workers/%.cpp : $(intermediates)/workers/%.h |
| |
| # XML |
| GEN := \ |
| $(intermediates)/xml/JSDOMParser.h \ |
| $(intermediates)/xml/JSXMLHttpRequest.h \ |
| $(intermediates)/xml/JSXMLHttpRequestException.h \ |
| $(intermediates)/xml/JSXMLHttpRequestProgressEvent.h \ |
| $(intermediates)/xml/JSXMLHttpRequestUpload.h \ |
| $(intermediates)/xml/JSXMLSerializer.h \ |
| $(intermediates)/xml/JSXPathException.h \ |
| $(intermediates)/xml/JSXPathExpression.h \ |
| $(intermediates)/xml/JSXPathEvaluator.h \ |
| $(intermediates)/xml/JSXPathNSResolver.h \ |
| $(intermediates)/xml/JSXPathResult.h \ |
| $(intermediates)/xml/JSXSLTProcessor.h |
| $(GEN): PRIVATE_PATH := $(LOCAL_PATH) |
| $(GEN): PRIVATE_CUSTOM_TOOL = perl -I$(PRIVATE_PATH)/bindings/scripts $(PRIVATE_PATH)/bindings/scripts/generate-bindings.pl --defines "$(FEATURE_DEFINES) LANGUAGE_JAVASCRIPT" --generator JS --include dom --include html --outputdir $(dir $@) $< |
| $(GEN): $(intermediates)/xml/JS%.h : $(LOCAL_PATH)/xml/%.idl $(js_binding_scripts) |
| $(transform-generated-source) |
| LOCAL_GENERATED_SOURCES += $(GEN) $(GEN:%.h=%.cpp) |
| |
| # We also need the .cpp files, which are generated as side effects of the |
| # above rules. Specifying this explicitly makes -j2 work. |
| $(patsubst %.h,%.cpp,$(GEN)): $(intermediates)/xml/%.cpp : $(intermediates)/xml/%.h |
| #end |
| |
| # Inspector |
| # These headers are required even when Inspector is disabled |
| GEN := \ |
| $(intermediates)/inspector/JSInspector.h \ |
| $(intermediates)/inspector/JSScriptProfile.h |
| |
| $(GEN): PRIVATE_PATH := $(LOCAL_PATH) |
| $(GEN): PRIVATE_CUSTOM_TOOL = perl -I$(PRIVATE_PATH)/bindings/scripts $(PRIVATE_PATH)/bindings/scripts/generate-bindings.pl --defines "$(FEATURE_DEFINES) LANGUAGE_JAVASCRIPT" --generator JS --include dom --include html --outputdir $(dir $@) $< |
| $(GEN): $(intermediates)/inspector/JS%.h : $(LOCAL_PATH)/inspector/%.idl $(js_binding_scripts) |
| $(transform-generated-source) |
| LOCAL_GENERATED_SOURCES += $(GEN) $(GEN:%.h=%.cpp) |
| |
| # We also need the .cpp files, which are generated as side effects of the |
| # above rules. Specifying this explicitly makes -j2 work. |
| $(patsubst %.h,%.cpp,$(GEN)): $(intermediates)/inspector/%.cpp : $(intermediates)/inspector/%.h |
| |
| # HTML tag and attribute names |
| |
| GEN:= $(intermediates)/HTMLNames.cpp $(intermediates)/HTMLNames.h $(intermediates)/HTMLElementFactory.cpp $(intermediates)/HTMLElementFactory.h $(intermediates)/JSHTMLElementWrapperFactory.cpp $(intermediates)/JSHTMLElementWrapperFactory.h |
| $(GEN): PRIVATE_PATH := $(LOCAL_PATH) |
| $(GEN): PRIVATE_CUSTOM_TOOL = perl -I $(PRIVATE_PATH)/bindings/scripts $< --tags $(PRIVATE_PATH)/html/HTMLTagNames.in --attrs $(PRIVATE_PATH)/html/HTMLAttributeNames.in --extraDefines "$(FEATURE_DEFINES)" --factory --wrapperFactory --output $(dir $@) |
| $(GEN): $(LOCAL_PATH)/dom/make_names.pl $(LOCAL_PATH)/html/HTMLTagNames.in $(LOCAL_PATH)/html/HTMLAttributeNames.in |
| $(transform-generated-source) |
| LOCAL_GENERATED_SOURCES += $(GEN) |
| |
| # SVG tag and attribute names |
| |
| # Note that if SVG is not used, we still need the headers and SVGNames.cpp as |
| # the HTML5 parser still requires these. The factory .cpp files are also |
| # generated in this case, but since these are not needed, they are excluded |
| # from GEN so that they don't get compiled. |
| ifeq ($(ENABLE_SVG), true) |
| GEN:= $(intermediates)/SVGNames.cpp $(intermediates)/SVGNames.h $(intermediates)/SVGElementFactory.cpp $(intermediates)/SVGElementFactory.h $(intermediates)/JSSVGElementWrapperFactory.cpp $(intermediates)/JSSVGElementWrapperFactory.h |
| else |
| GEN:= $(intermediates)/SVGNames.h $(intermediates)/SVGNames.cpp $(intermediates)/SVGElementFactory.h $(intermediates)/JSSVGElementWrapperFactory.h |
| endif |
| SVG_FLAGS:=ENABLE_SVG_ANIMATION=1 ENABLE_SVG_AS_IMAGE=1 ENABLE_SVG_FILTERS=1 ENABLE_SVG_FONTS=1 ENABLE_SVG_FOREIGN_OBJECT=1 ENABLE_SVG_USE=1 |
| $(GEN): PRIVATE_PATH := $(LOCAL_PATH) |
| $(GEN): PRIVATE_CUSTOM_TOOL = perl -I $(PRIVATE_PATH)/bindings/scripts $< --tags $(PRIVATE_PATH)/svg/svgtags.in --attrs $(PRIVATE_PATH)/svg/svgattrs.in --extraDefines "$(SVG_FLAGS)" --factory --wrapperFactory --output $(dir $@) |
| $(GEN): $(LOCAL_PATH)/dom/make_names.pl $(LOCAL_PATH)/svg/svgtags.in $(LOCAL_PATH)/svg/svgattrs.in |
| $(transform-generated-source) |
| LOCAL_GENERATED_SOURCES += $(GEN) |
| |
| # MathML tag and attribute names |
| |
| # Note that MathML is never used but we still need the headers and |
| # MathMLames.cpp as the HTML5 parser still requires these. The factory |
| # .cpp files are also generated in this case, but since these are not |
| # needed, they are excluded from GEN so that they don't get compiled. |
| GEN:= $(intermediates)/MathMLNames.h $(intermediates)/MathMLNames.cpp $(intermediates)/MathMLElementFactory.h $(intermediates)/JSMathMLElementWrapperFactory.h |
| $(GEN): PRIVATE_PATH := $(LOCAL_PATH) |
| $(GEN): PRIVATE_CUSTOM_TOOL = perl -I $(PRIVATE_PATH)/bindings/scripts $< --tags $(PRIVATE_PATH)/mathml/mathtags.in --attrs $(PRIVATE_PATH)/mathml/mathattrs.in --factory --wrapperFactory --output $(dir $@) |
| $(GEN): $(LOCAL_PATH)/dom/make_names.pl $(LOCAL_PATH)/mathml/mathtags.in $(LOCAL_PATH)/mathml/mathattrs.in |
| $(transform-generated-source) |
| LOCAL_GENERATED_SOURCES += $(GEN) |
| |