Changeset 98793 in webkit
- Timestamp:
- Oct 28, 2011, 6:56:13 PM (15 years ago)
- Location:
- trunk
- Files:
-
- 9 edited
- 2 moved
-
ChangeLog (modified) (1 diff)
-
Source/WebCore/CMakeLists.txt (modified) (1 diff)
-
Source/WebCore/ChangeLog (modified) (1 diff)
-
Source/WebCore/CodeGenerators.pri (modified) (2 diffs)
-
Source/WebCore/DerivedSources.make (modified) (1 diff)
-
Source/WebCore/GNUmakefile.am (modified) (3 diffs)
-
Source/WebCore/WebCore.gyp/WebCore.gyp (modified) (1 diff)
-
Source/WebCore/WebCore.gyp/scripts/action_makenames.py (modified) (2 diffs)
-
Source/WebCore/dom/DOMExceptions.in (moved) (moved from trunk/Source/WebCore/dom/ExceptionCodeDescription.in )
-
Source/WebCore/dom/make_dom_exceptions.pl (moved) (moved from trunk/Source/WebCore/dom/make_exception_code_description.pl )
-
Source/cmake/WebKitMacros.cmake (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ChangeLog
r98711 r98793 1 2011-10-28 Adam Barth <abarth@webkit.org> 2 3 Rename ExceptionCodeDescription.in to DOMExceptions.in 4 https://bugs.webkit.org/show_bug.cgi?id=71157 5 6 Reviewed by Eric Seidel. 7 8 * Source/cmake/WebKitMacros.cmake: 9 1 10 2011-10-28 Adam Barth <abarth@webkit.org> 2 11 -
trunk/Source/WebCore/CMakeLists.txt
r98790 r98793 2333 2333 2334 2334 2335 GENERATE_EXCEPTION_CODE_DESCRIPTION(${WEBCORE_DIR}/dom/ ExceptionCodeDescription.in ExceptionCodeDescription.cpp)2335 GENERATE_EXCEPTION_CODE_DESCRIPTION(${WEBCORE_DIR}/dom/DOMExceptions.in ExceptionCodeDescription.cpp) 2336 2336 LIST(APPEND WebCore_SOURCES ${DERIVED_SOURCES_WEBCORE_DIR}/ExceptionCodeDescription.cpp) 2337 2337 -
trunk/Source/WebCore/ChangeLog
r98792 r98793 1 2011-10-28 Adam Barth <abarth@webkit.org> 2 3 Rename ExceptionCodeDescription.in to DOMExceptions.in 4 https://bugs.webkit.org/show_bug.cgi?id=71157 5 6 Reviewed by Eric Seidel. 7 8 This file is now used for more than just the descriptions of the exceptions. 9 10 * CMakeLists.txt: 11 * CodeGenerators.pri: 12 * DerivedSources.make: 13 * GNUmakefile.am: 14 * WebCore.gyp/WebCore.gyp: 15 * WebCore.gyp/scripts/action_makenames.py: 16 * dom/DOMExceptions.in: Copied from Source/WebCore/dom/ExceptionCodeDescription.in. 17 * dom/ExceptionCodeDescription.in: Removed. 18 * dom/make_dom_exceptions.pl: Copied from Source/WebCore/dom/make_exception_code_description.pl. 19 * dom/make_exception_code_description.pl: Removed. 20 1 21 2011-10-28 Chris Rogers <crogers@google.com> 2 22 -
trunk/Source/WebCore/CodeGenerators.pri
r98713 r98793 37 37 EVENT_TARGET_FACTORY = $$PWD/dom/EventTargetFactory.in 38 38 39 EXCEPTION_CODE_DESCRIPTION = $$PWD/dom/ExceptionCodeDescription.in39 DOM_EXCEPTIONS = $$PWD/dom/DOMExceptions.in 40 40 41 41 COLORDATA_GPERF = $$PWD/platform/ColorData.gperf … … 775 775 # GENERATOR 5-G: 776 776 exceptioncodedescription.output = $${WC_GENERATED_SOURCES_DIR}/ExceptionCodeDescription.cpp 777 exceptioncodedescription.input = EXCEPTION_CODE_DESCRIPTION778 exceptioncodedescription.wkScript = $$PWD/dom/make_ exception_code_description.pl779 exceptioncodedescription.commands = perl -I$$PWD/bindings/scripts $$exceptioncodedescription.wkScript --input $$ EXCEPTION_CODE_DESCRIPTION--outputDir $$WC_GENERATED_SOURCES_DIR780 exceptioncodedescription.depends = $$PWD/dom/make_ exception_code_description.pl $$EXCEPTION_CODE_DESCRIPTION777 exceptioncodedescription.input = DOM_EXCEPTIONS 778 exceptioncodedescription.wkScript = $$PWD/dom/make_dom_exceptions.pl 779 exceptioncodedescription.commands = perl -I$$PWD/bindings/scripts $$exceptioncodedescription.wkScript --input $$DOM_EXCEPTIONS --outputDir $$WC_GENERATED_SOURCES_DIR 780 exceptioncodedescription.depends = $$PWD/dom/make_dom_exceptions.pl $$DOM_EXCEPTIONS 781 781 addExtraCompiler(exceptioncodedescription) 782 782 -
trunk/Source/WebCore/DerivedSources.make
r98755 r98793 858 858 perl -I $(WebCore)/bindings/scripts $< --input $(WebCore)/dom/EventTargetFactory.in 859 859 860 ExceptionCodeDescription.cpp ExceptionCodeDescription.h ExceptionHeaders.h ExceptionInterfaces.h : dom/make_ exception_code_description.pl dom/ExceptionCodeDescription.in861 perl -I $(WebCore)/bindings/scripts $< --input $(WebCore)/dom/ ExceptionCodeDescription.in860 ExceptionCodeDescription.cpp ExceptionCodeDescription.h ExceptionHeaders.h ExceptionInterfaces.h : dom/make_dom_exceptions.pl dom/DOMExceptions.in 861 perl -I $(WebCore)/bindings/scripts $< --input $(WebCore)/dom/DOMExceptions.in 862 862 863 863 # -------- -
trunk/Source/WebCore/GNUmakefile.am
r98755 r98793 697 697 $(AM_V_GEN)$(PERL) -I$(WebCore)/bindings/scripts $< --input $(WebCore)/dom/EventTargetFactory.in --outputDir "$(GENSOURCES_WEBCORE)" 698 698 699 DerivedSources/WebCore/ExceptionCodeDescription.cpp DerivedSources/WebCore/ExceptionCodeDescription.h DerivedSources/WebCore/ExceptionHeaders.h DerivedSources/WebCore/ExceptionInterfaces.h: $(WebCore)/dom/make_ exception_code_description.pl $(WebCore)/dom/ExceptionCodeDescription.in700 $(AM_V_GEN)$(PERL) -I$(WebCore)/bindings/scripts $< --input $(WebCore)/dom/ ExceptionCodeDescription.in --outputDir "$(GENSOURCES_WEBCORE)"699 DerivedSources/WebCore/ExceptionCodeDescription.cpp DerivedSources/WebCore/ExceptionCodeDescription.h DerivedSources/WebCore/ExceptionHeaders.h DerivedSources/WebCore/ExceptionInterfaces.h: $(WebCore)/dom/make_dom_exceptions.pl $(WebCore)/dom/DOMExceptions.in 700 $(AM_V_GEN)$(PERL) -I$(WebCore)/bindings/scripts $< --input $(WebCore)/dom/DOMExceptions.in --outputDir "$(GENSOURCES_WEBCORE)" 701 701 702 702 # All Web Inspector generated files are created with this one call to CodeGeneratorInspector.py … … 876 876 Source/WebCore/css/CSSPropertyNames.in \ 877 877 Source/WebCore/css/CSSValueKeywords.in \ 878 Source/WebCore/dom/DOMExceptions.in \ 878 879 Source/WebCore/css/fullscreen.css \ 879 880 Source/WebCore/css/fullscreenQuickTime.css \ … … 896 897 Source/WebCore/dom/EventFactory.in \ 897 898 Source/WebCore/dom/EventTargetFactory.in \ 898 Source/WebCore/dom/ExceptionCodeDescription.in \ 899 Source/WebCore/dom/make_dom_exceptions.pl \ 900 Source/WebCore/dom/make_event_factory.pl \ 899 901 Source/WebCore/dom/make_names.pl \ 900 Source/WebCore/dom/make_event_factory.pl \901 Source/WebCore/dom/make_exception_code_description.pl \902 902 Source/WebCore/html/HTMLAttributeNames.in \ 903 903 Source/WebCore/html/HTMLTagNames.in \ -
trunk/Source/WebCore/WebCore.gyp/WebCore.gyp
r98755 r98793 699 699 'action_name': 'ExceptionCodeDescription', 700 700 'inputs': [ 701 '../dom/make_ exception_code_description.pl',702 '../dom/ ExceptionCodeDescription.in',701 '../dom/make_dom_exceptions.pl', 702 '../dom/DOMExceptions.in', 703 703 ], 704 704 'outputs': [ -
trunk/Source/WebCore/WebCore.gyp/scripts/action_makenames.py
r98711 r98793 120 120 if inputBasename == 'make_names.pl' \ 121 121 or inputBasename == 'make_event_factory.pl' \ 122 or inputBasename == 'make_ exception_code_description.pl':122 or inputBasename == 'make_dom_exceptions.pl': 123 123 assert makeNamesInput == None 124 124 makeNamesInput = inputAbs … … 133 133 elif inputBasename.endswith('EventFactory.in') \ 134 134 or inputBasename.endswith('EventTargetFactory.in') \ 135 or inputBasename.endswith(' ExceptionCodeDescription.in'):135 or inputBasename.endswith('DOMExceptions.in'): 136 136 eventsInput = inputAbsPosix 137 137 elif inputBasename.endswith('Names.in'): -
trunk/Source/cmake/WebKitMacros.cmake
r98711 r98793 50 50 51 51 MACRO (GENERATE_EXCEPTION_CODE_DESCRIPTION _infile _outfile) 52 SET(NAMES_GENERATOR ${WEBCORE_DIR}/dom/make_ exception_code_description.pl)52 SET(NAMES_GENERATOR ${WEBCORE_DIR}/dom/make_dom_exceptions.pl) 53 53 54 54 ADD_CUSTOM_COMMAND(
Note:
See TracChangeset
for help on using the changeset viewer.