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

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

Issue 18311002: Partial implementation of CSSVariablesMap for CSS Variables CSSOM (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Minor optimisation to clearVariables Created 7 years, 5 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/CSSMediaRule.idl', 10 'css/CSSMediaRule.idl',
11 'css/CSSPageRule.idl', 11 'css/CSSPageRule.idl',
12 'css/CSSPrimitiveValue.idl', 12 'css/CSSPrimitiveValue.idl',
13 'css/CSSRule.idl', 13 'css/CSSRule.idl',
14 'css/CSSRuleList.idl', 14 'css/CSSRuleList.idl',
15 'css/CSSStyleDeclaration.idl', 15 'css/CSSStyleDeclaration.idl',
16 'css/CSSStyleRule.idl', 16 'css/CSSStyleRule.idl',
17 'css/CSSStyleSheet.idl', 17 'css/CSSStyleSheet.idl',
18 'css/CSSSupportsRule.idl', 18 'css/CSSSupportsRule.idl',
19 # We should probably add CSSUnknownRule.idl to this list, 19 # We should probably add CSSUnknownRule.idl to this list,
20 # but it currently causes a compile error. 20 # but it currently causes a compile error.
21 # 'css/CSSUnknownRule.idl', 21 # 'css/CSSUnknownRule.idl',
22 'css/CSSValue.idl', 22 'css/CSSValue.idl',
23 'css/CSSValueList.idl', 23 'css/CSSValueList.idl',
24 'css/CSSViewportRule.idl', 24 'css/CSSViewportRule.idl',
25 'css/CSSVariablesMap.idl',
25 'css/Counter.idl', 26 'css/Counter.idl',
26 'css/FontLoader.idl', 27 'css/FontLoader.idl',
27 'css/MediaList.idl', 28 'css/MediaList.idl',
28 'css/MediaQueryList.idl', 29 'css/MediaQueryList.idl',
29 'css/Rect.idl', 30 'css/Rect.idl',
30 'css/RGBColor.idl', 31 'css/RGBColor.idl',
31 'css/StyleMedia.idl', 32 'css/StyleMedia.idl',
32 'css/StyleSheet.idl', 33 'css/StyleSheet.idl',
33 'css/StyleSheetList.idl', 34 'css/StyleSheetList.idl',
34 'css/WebKitCSSFilterRule.idl', 35 'css/WebKitCSSFilterRule.idl',
(...skipping 612 matching lines...) Expand 10 before | Expand all | Expand 10 after
647 'css/CSSToStyleMap.cpp', 648 'css/CSSToStyleMap.cpp',
648 'css/CSSToStyleMap.h', 649 'css/CSSToStyleMap.h',
649 'css/CSSTransformValue.cpp', 650 'css/CSSTransformValue.cpp',
650 'css/CSSUnicodeRangeValue.cpp', 651 'css/CSSUnicodeRangeValue.cpp',
651 'css/CSSUnicodeRangeValue.h', 652 'css/CSSUnicodeRangeValue.h',
652 'css/CSSUnknownRule.h', 653 'css/CSSUnknownRule.h',
653 'css/CSSValue.cpp', 654 'css/CSSValue.cpp',
654 'css/CSSValueList.cpp', 655 'css/CSSValueList.cpp',
655 'css/CSSValuePool.cpp', 656 'css/CSSValuePool.cpp',
656 'css/CSSValuePool.h', 657 'css/CSSValuePool.h',
658 'css/CSSVariablesMap.h',
657 'css/CSSVariableValue.h', 659 'css/CSSVariableValue.h',
658 'css/CSSViewportRule.h', 660 'css/CSSViewportRule.h',
659 'css/CSSViewportRule.cpp', 661 'css/CSSViewportRule.cpp',
660 'css/Counter.h', 662 'css/Counter.h',
661 'css/DeprecatedStyleBuilder.cpp', 663 'css/DeprecatedStyleBuilder.cpp',
662 'css/DeprecatedStyleBuilder.h', 664 'css/DeprecatedStyleBuilder.h',
663 'css/DOMWindowCSS.cpp', 665 'css/DOMWindowCSS.cpp',
664 'css/DOMWindowCSS.h', 666 'css/DOMWindowCSS.h',
665 'css/DocumentRuleSets.cpp', 667 'css/DocumentRuleSets.cpp',
666 'css/DocumentRuleSets.h', 668 'css/DocumentRuleSets.h',
(...skipping 3057 matching lines...) Expand 10 before | Expand all | Expand 10 after
3724 'bison_exe': 'bison', 3726 'bison_exe': 'bison',
3725 # We specify a preprocess so it happens locally and won't get 3727 # We specify a preprocess so it happens locally and won't get
3726 # distributed to goma. 3728 # distributed to goma.
3727 # FIXME: /usr/bin/gcc won't exist on OSX forever. We want to 3729 # FIXME: /usr/bin/gcc won't exist on OSX forever. We want to
3728 # use /usr/bin/clang once we require Xcode 4.x. 3730 # use /usr/bin/clang once we require Xcode 4.x.
3729 'preprocessor': '--preprocessor "/usr/bin/gcc -E -P -x c++"' 3731 'preprocessor': '--preprocessor "/usr/bin/gcc -E -P -x c++"'
3730 }], 3732 }],
3731 ], 3733 ],
3732 } 3734 }
3733 } 3735 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698