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

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: Rebase and review changes Created 7 years, 2 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/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/CSSKeyframeRule.idl', 10 'css/CSSKeyframeRule.idl',
11 'css/CSSKeyframesRule.idl', 11 'css/CSSKeyframesRule.idl',
12 'css/CSSMediaRule.idl', 12 'css/CSSMediaRule.idl',
13 'css/CSSPageRule.idl', 13 'css/CSSPageRule.idl',
14 'css/CSSPrimitiveValue.idl', 14 'css/CSSPrimitiveValue.idl',
15 'css/CSSRule.idl', 15 'css/CSSRule.idl',
16 'css/CSSRuleList.idl', 16 'css/CSSRuleList.idl',
17 'css/CSSStyleDeclaration.idl', 17 'css/CSSStyleDeclaration.idl',
18 'css/CSSStyleRule.idl', 18 'css/CSSStyleRule.idl',
19 'css/CSSStyleSheet.idl', 19 'css/CSSStyleSheet.idl',
20 'css/CSSSupportsRule.idl', 20 'css/CSSSupportsRule.idl',
21 # We should probably add CSSUnknownRule.idl to this list, 21 # We should probably add CSSUnknownRule.idl to this list,
22 # but it currently causes a compile error. 22 # but it currently causes a compile error.
23 # 'css/CSSUnknownRule.idl', 23 # 'css/CSSUnknownRule.idl',
24 'css/CSSValue.idl', 24 'css/CSSValue.idl',
25 'css/CSSValueList.idl', 25 'css/CSSValueList.idl',
26 'css/CSSViewportRule.idl', 26 'css/CSSViewportRule.idl',
27 'css/CSSVariablesMapForEachCallback.idl',
27 'css/CSSVariablesMap.idl', 28 'css/CSSVariablesMap.idl',
28 'css/Counter.idl', 29 'css/Counter.idl',
29 'css/FontFaceSet.idl', 30 'css/FontFaceSet.idl',
30 'css/FontFace.idl', 31 'css/FontFace.idl',
31 'css/MediaList.idl', 32 'css/MediaList.idl',
32 'css/MediaQueryList.idl', 33 'css/MediaQueryList.idl',
33 'css/RGBColor.idl', 34 'css/RGBColor.idl',
34 'css/Rect.idl', 35 'css/Rect.idl',
35 'css/StyleMedia.idl', 36 'css/StyleMedia.idl',
36 'css/StyleSheet.idl', 37 'css/StyleSheet.idl',
(...skipping 629 matching lines...) Expand 10 before | Expand all | Expand 10 after
666 'css/CSSToStyleMap.cpp', 667 'css/CSSToStyleMap.cpp',
667 'css/CSSToStyleMap.h', 668 'css/CSSToStyleMap.h',
668 'css/CSSTransformValue.cpp', 669 'css/CSSTransformValue.cpp',
669 'css/CSSUnicodeRangeValue.cpp', 670 'css/CSSUnicodeRangeValue.cpp',
670 'css/CSSUnicodeRangeValue.h', 671 'css/CSSUnicodeRangeValue.h',
671 'css/CSSUnknownRule.h', 672 'css/CSSUnknownRule.h',
672 'css/CSSValue.cpp', 673 'css/CSSValue.cpp',
673 'css/CSSValueList.cpp', 674 'css/CSSValueList.cpp',
674 'css/CSSValuePool.cpp', 675 'css/CSSValuePool.cpp',
675 'css/CSSValuePool.h', 676 'css/CSSValuePool.h',
677 'css/CSSVariablesIterator.h',
676 'css/CSSVariablesMap.cpp', 678 'css/CSSVariablesMap.cpp',
677 'css/CSSVariablesMap.h', 679 'css/CSSVariablesMap.h',
680 'css/CSSVariablesMapForEachCallback.h',
678 'css/CSSVariableValue.h', 681 'css/CSSVariableValue.h',
679 'css/CSSViewportRule.h', 682 'css/CSSViewportRule.h',
680 'css/CSSViewportRule.cpp', 683 'css/CSSViewportRule.cpp',
681 'css/Counter.h', 684 'css/Counter.h',
682 'css/DOMWindowCSS.cpp', 685 'css/DOMWindowCSS.cpp',
683 'css/DOMWindowCSS.h', 686 'css/DOMWindowCSS.h',
684 'css/DocumentRuleSets.cpp', 687 'css/DocumentRuleSets.cpp',
685 'css/DocumentRuleSets.h', 688 'css/DocumentRuleSets.h',
686 'css/ElementRuleCollector.cpp', 689 'css/ElementRuleCollector.cpp',
687 'css/ElementRuleCollector.h', 690 'css/ElementRuleCollector.h',
(...skipping 3186 matching lines...) Expand 10 before | Expand all | Expand 10 after
3874 'bison_exe': 'bison', 3877 'bison_exe': 'bison',
3875 # We specify a preprocess so it happens locally and won't get 3878 # We specify a preprocess so it happens locally and won't get
3876 # distributed to goma. 3879 # distributed to goma.
3877 # FIXME: /usr/bin/gcc won't exist on OSX forever. We want to 3880 # FIXME: /usr/bin/gcc won't exist on OSX forever. We want to
3878 # use /usr/bin/clang once we require Xcode 4.x. 3881 # use /usr/bin/clang once we require Xcode 4.x.
3879 'preprocessor': '--preprocessor "/usr/bin/gcc -E -P -x c++"' 3882 'preprocessor': '--preprocessor "/usr/bin/gcc -E -P -x c++"'
3880 }], 3883 }],
3881 ], 3884 ],
3882 } 3885 }
3883 } 3886 }
OLDNEW
« no previous file with comments | « Source/bindings/tests/results/V8TestCallback.cpp ('k') | Source/core/css/CSSComputedStyleDeclaration.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698