Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(73)

Side by Side Diff: Source/core/core.gypi

Issue 14705009: Remove RangeException interface (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Update expectation Created 7 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 { 1 {
2 'variables': { 2 'variables': {
3 'core_idl_files': [ 3 'core_idl_files': [
4 'css/CSSCharsetRule.idl', 4 'css/CSSCharsetRule.idl',
5 'css/CSSFontFaceLoadEvent.idl', 5 'css/CSSFontFaceLoadEvent.idl',
6 'css/CSSFontFaceRule.idl', 6 'css/CSSFontFaceRule.idl',
7 'css/CSSHostRule.idl', 7 'css/CSSHostRule.idl',
8 'css/CSSImportRule.idl', 8 'css/CSSImportRule.idl',
9 'css/CSSMediaRule.idl', 9 'css/CSSMediaRule.idl',
10 'css/CSSPageRule.idl', 10 'css/CSSPageRule.idl',
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
87 'dom/NodeFilter.idl', 87 'dom/NodeFilter.idl',
88 'dom/NodeIterator.idl', 88 'dom/NodeIterator.idl',
89 'dom/NodeList.idl', 89 'dom/NodeList.idl',
90 'dom/Notation.idl', 90 'dom/Notation.idl',
91 'dom/OverflowEvent.idl', 91 'dom/OverflowEvent.idl',
92 'dom/PageTransitionEvent.idl', 92 'dom/PageTransitionEvent.idl',
93 'dom/PopStateEvent.idl', 93 'dom/PopStateEvent.idl',
94 'dom/ProcessingInstruction.idl', 94 'dom/ProcessingInstruction.idl',
95 'dom/ProgressEvent.idl', 95 'dom/ProgressEvent.idl',
96 'dom/Range.idl', 96 'dom/Range.idl',
97 'dom/RangeException.idl',
98 'dom/RequestAnimationFrameCallback.idl', 97 'dom/RequestAnimationFrameCallback.idl',
99 'dom/SecurityPolicyViolationEvent.idl', 98 'dom/SecurityPolicyViolationEvent.idl',
100 'dom/ShadowRoot.idl', 99 'dom/ShadowRoot.idl',
101 'dom/StringCallback.idl', 100 'dom/StringCallback.idl',
102 'dom/Text.idl', 101 'dom/Text.idl',
103 'dom/TextEvent.idl', 102 'dom/TextEvent.idl',
104 'dom/Touch.idl', 103 'dom/Touch.idl',
105 'dom/TouchEvent.idl', 104 'dom/TouchEvent.idl',
106 'dom/TouchList.idl', 105 'dom/TouchList.idl',
107 'dom/TransitionEvent.idl', 106 'dom/TransitionEvent.idl',
(...skipping 1722 matching lines...) Expand 10 before | Expand all | Expand 10 after
1830 'dom/Position.cpp', 1829 'dom/Position.cpp',
1831 'dom/PositionIterator.cpp', 1830 'dom/PositionIterator.cpp',
1832 'dom/PositionIterator.h', 1831 'dom/PositionIterator.h',
1833 'dom/ProcessingInstruction.cpp', 1832 'dom/ProcessingInstruction.cpp',
1834 'dom/ProcessingInstruction.h', 1833 'dom/ProcessingInstruction.h',
1835 'dom/ProgressEvent.cpp', 1834 'dom/ProgressEvent.cpp',
1836 'dom/ProgressEvent.h', 1835 'dom/ProgressEvent.h',
1837 'dom/PseudoElement.cpp', 1836 'dom/PseudoElement.cpp',
1838 'dom/QualifiedName.cpp', 1837 'dom/QualifiedName.cpp',
1839 'dom/Range.cpp', 1838 'dom/Range.cpp',
1840 'dom/RangeException.cpp',
1841 'dom/RangeException.h',
1842 'dom/RawDataDocumentParser.h', 1839 'dom/RawDataDocumentParser.h',
1843 'dom/RegisteredEventListener.cpp', 1840 'dom/RegisteredEventListener.cpp',
1844 'dom/RequestAnimationFrameCallback.h', 1841 'dom/RequestAnimationFrameCallback.h',
1845 'dom/ScopedEventQueue.cpp', 1842 'dom/ScopedEventQueue.cpp',
1846 'dom/ScopedEventQueue.h', 1843 'dom/ScopedEventQueue.h',
1847 'dom/ScriptElement.cpp', 1844 'dom/ScriptElement.cpp',
1848 'dom/ScriptElement.h', 1845 'dom/ScriptElement.h',
1849 'dom/ScriptExecutionContext.cpp', 1846 'dom/ScriptExecutionContext.cpp',
1850 'dom/ScriptRunner.cpp', 1847 'dom/ScriptRunner.cpp',
1851 'dom/ScriptableDocumentParser.cpp', 1848 'dom/ScriptableDocumentParser.cpp',
(...skipping 1828 matching lines...) Expand 10 before | Expand all | Expand 10 after
3680 'bison_exe': 'bison', 3677 'bison_exe': 'bison',
3681 # We specify a preprocess so it happens locally and won't get 3678 # We specify a preprocess so it happens locally and won't get
3682 # distributed to goma. 3679 # distributed to goma.
3683 # FIXME: /usr/bin/gcc won't exist on OSX forever. We want to 3680 # FIXME: /usr/bin/gcc won't exist on OSX forever. We want to
3684 # use /usr/bin/clang once we require Xcode 4.x. 3681 # use /usr/bin/clang once we require Xcode 4.x.
3685 'preprocessor': '--preprocessor "/usr/bin/gcc -E -P -x c++"' 3682 'preprocessor': '--preprocessor "/usr/bin/gcc -E -P -x c++"'
3686 }], 3683 }],
3687 ], 3684 ],
3688 } 3685 }
3689 } 3686 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698