Chromium Code Reviews

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

Issue 21006006: Add forEach() to CSSVariablesMap (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Generator & test nits Created 7 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | | Annotate | Revision Log
OLDNEW
1 { 1 {
2 'variables': { 2 'variables': {
3 'deprecated_perl_core_idl_files': [ 3 'deprecated_perl_core_idl_files': [
4 'css/CSS.idl', 4 'css/CSS.idl',
5 'css/CSSCharsetRule.idl', 5 'css/CSSCharsetRule.idl',
6 'css/CSSFontFaceLoadEvent.idl', 6 'css/CSSFontFaceLoadEvent.idl',
7 'css/CSSFontFaceRule.idl', 7 'css/CSSFontFaceRule.idl',
8 'css/CSSHostRule.idl', 8 'css/CSSHostRule.idl',
9 'css/CSSImportRule.idl', 9 'css/CSSImportRule.idl',
10 'css/CSSMediaRule.idl', 10 'css/CSSMediaRule.idl',
(...skipping 268 matching lines...)
279 'xml/XMLHttpRequestProgressEvent.idl', 279 'xml/XMLHttpRequestProgressEvent.idl',
280 'xml/XMLHttpRequestUpload.idl', 280 'xml/XMLHttpRequestUpload.idl',
281 'xml/XMLSerializer.idl', 281 'xml/XMLSerializer.idl',
282 'xml/XPathEvaluator.idl', 282 'xml/XPathEvaluator.idl',
283 'xml/XPathExpression.idl', 283 'xml/XPathExpression.idl',
284 'xml/XPathNSResolver.idl', 284 'xml/XPathNSResolver.idl',
285 'xml/XPathResult.idl', 285 'xml/XPathResult.idl',
286 'xml/XSLTProcessor.idl', 286 'xml/XSLTProcessor.idl',
287 ], 287 ],
288 'python_core_idl_files': [ 288 'python_core_idl_files': [
289 'css/CSSVariablesMapForEachCallback.idl',
289 'css/RGBColor.idl', 290 'css/RGBColor.idl',
290 'css/Rect.idl', 291 'css/Rect.idl',
291 'dom/ChildNode.idl', 292 'dom/ChildNode.idl',
292 'dom/DocumentFullscreen.idl', 293 'dom/DocumentFullscreen.idl',
293 'dom/ParentNode.idl', 294 'dom/ParentNode.idl',
294 'dom/RequestAnimationFrameCallback.idl', 295 'dom/RequestAnimationFrameCallback.idl',
295 'dom/StringCallback.idl', 296 'dom/StringCallback.idl',
296 'html/VoidCallback.idl', 297 'html/VoidCallback.idl',
297 'html/canvas/CanvasPattern.idl', 298 'html/canvas/CanvasPattern.idl',
298 'html/canvas/EXTFragDepth.idl', 299 'html/canvas/EXTFragDepth.idl',
(...skipping 355 matching lines...)
654 'css/CSSToStyleMap.cpp', 655 'css/CSSToStyleMap.cpp',
655 'css/CSSToStyleMap.h', 656 'css/CSSToStyleMap.h',
656 'css/CSSTransformValue.cpp', 657 'css/CSSTransformValue.cpp',
657 'css/CSSUnicodeRangeValue.cpp', 658 'css/CSSUnicodeRangeValue.cpp',
658 'css/CSSUnicodeRangeValue.h', 659 'css/CSSUnicodeRangeValue.h',
659 'css/CSSUnknownRule.h', 660 'css/CSSUnknownRule.h',
660 'css/CSSValue.cpp', 661 'css/CSSValue.cpp',
661 'css/CSSValueList.cpp', 662 'css/CSSValueList.cpp',
662 'css/CSSValuePool.cpp', 663 'css/CSSValuePool.cpp',
663 'css/CSSValuePool.h', 664 'css/CSSValuePool.h',
665 'css/CSSVariablesIterator.h',
664 'css/CSSVariablesMap.cpp', 666 'css/CSSVariablesMap.cpp',
665 'css/CSSVariablesMap.h', 667 'css/CSSVariablesMap.h',
668 'css/CSSVariablesMapForEachCallback.h',
666 'css/CSSVariableValue.h', 669 'css/CSSVariableValue.h',
667 'css/CSSViewportRule.h', 670 'css/CSSViewportRule.h',
668 'css/CSSViewportRule.cpp', 671 'css/CSSViewportRule.cpp',
669 'css/Counter.h', 672 'css/Counter.h',
670 'css/DOMWindowCSS.cpp', 673 'css/DOMWindowCSS.cpp',
671 'css/DOMWindowCSS.h', 674 'css/DOMWindowCSS.h',
672 'css/DocumentRuleSets.cpp', 675 'css/DocumentRuleSets.cpp',
673 'css/DocumentRuleSets.h', 676 'css/DocumentRuleSets.h',
674 'css/ElementRuleCollector.cpp', 677 'css/ElementRuleCollector.cpp',
675 'css/ElementRuleCollector.h', 678 'css/ElementRuleCollector.h',
(...skipping 3116 matching lines...)
3792 'bison_exe': 'bison', 3795 'bison_exe': 'bison',
3793 # We specify a preprocess so it happens locally and won't get 3796 # We specify a preprocess so it happens locally and won't get
3794 # distributed to goma. 3797 # distributed to goma.
3795 # FIXME: /usr/bin/gcc won't exist on OSX forever. We want to 3798 # FIXME: /usr/bin/gcc won't exist on OSX forever. We want to
3796 # use /usr/bin/clang once we require Xcode 4.x. 3799 # use /usr/bin/clang once we require Xcode 4.x.
3797 'preprocessor': '--preprocessor "/usr/bin/gcc -E -P -x c++"' 3800 'preprocessor': '--preprocessor "/usr/bin/gcc -E -P -x c++"'
3798 }], 3801 }],
3799 ], 3802 ],
3800 } 3803 }
3801 } 3804 }
OLDNEW

Powered by Google App Engine