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

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: Removed unused IDL callback definition 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 608 matching lines...) Expand 10 before | Expand all | Expand 10 after
643 'css/CSSToStyleMap.cpp', 644 'css/CSSToStyleMap.cpp',
644 'css/CSSToStyleMap.h', 645 'css/CSSToStyleMap.h',
645 'css/CSSTransformValue.cpp', 646 'css/CSSTransformValue.cpp',
646 'css/CSSUnicodeRangeValue.cpp', 647 'css/CSSUnicodeRangeValue.cpp',
647 'css/CSSUnicodeRangeValue.h', 648 'css/CSSUnicodeRangeValue.h',
648 'css/CSSUnknownRule.h', 649 'css/CSSUnknownRule.h',
649 'css/CSSValue.cpp', 650 'css/CSSValue.cpp',
650 'css/CSSValueList.cpp', 651 'css/CSSValueList.cpp',
651 'css/CSSValuePool.cpp', 652 'css/CSSValuePool.cpp',
652 'css/CSSValuePool.h', 653 'css/CSSValuePool.h',
654 'css/CSSVariablesMap.h',
653 'css/CSSVariableValue.h', 655 'css/CSSVariableValue.h',
654 'css/CSSViewportRule.h', 656 'css/CSSViewportRule.h',
655 'css/CSSViewportRule.cpp', 657 'css/CSSViewportRule.cpp',
656 'css/Counter.h', 658 'css/Counter.h',
657 'css/DeprecatedStyleBuilder.cpp', 659 'css/DeprecatedStyleBuilder.cpp',
658 'css/DeprecatedStyleBuilder.h', 660 'css/DeprecatedStyleBuilder.h',
659 'css/DOMWindowCSS.cpp', 661 'css/DOMWindowCSS.cpp',
660 'css/DOMWindowCSS.h', 662 'css/DOMWindowCSS.h',
661 'css/DocumentRuleSets.cpp', 663 'css/DocumentRuleSets.cpp',
662 'css/DocumentRuleSets.h', 664 'css/DocumentRuleSets.h',
(...skipping 3044 matching lines...) Expand 10 before | Expand all | Expand 10 after
3707 'bison_exe': 'bison', 3709 'bison_exe': 'bison',
3708 # We specify a preprocess so it happens locally and won't get 3710 # We specify a preprocess so it happens locally and won't get
3709 # distributed to goma. 3711 # distributed to goma.
3710 # FIXME: /usr/bin/gcc won't exist on OSX forever. We want to 3712 # FIXME: /usr/bin/gcc won't exist on OSX forever. We want to
3711 # use /usr/bin/clang once we require Xcode 4.x. 3713 # use /usr/bin/clang once we require Xcode 4.x.
3712 'preprocessor': '--preprocessor "/usr/bin/gcc -E -P -x c++"' 3714 'preprocessor': '--preprocessor "/usr/bin/gcc -E -P -x c++"'
3713 }], 3715 }],
3714 ], 3716 ],
3715 } 3717 }
3716 } 3718 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698