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

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

Issue 16273010: Stop using [InterfaceName] in CSS IDL files (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fix merge conflict for CSSViewportRule Created 7 years, 6 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
« no previous file with comments | « Source/bindings/v8/custom/V8CSSValueCustom.cpp ('k') | Source/core/css/CSSFilterRule.idl » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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/CSSFilterRule.idl',
7 'css/CSSFilterValue.idl',
8 'css/CSSFontFaceLoadEvent.idl', 6 'css/CSSFontFaceLoadEvent.idl',
9 'css/CSSFontFaceRule.idl', 7 'css/CSSFontFaceRule.idl',
10 'css/CSSHostRule.idl', 8 'css/CSSHostRule.idl',
11 'css/CSSImportRule.idl', 9 'css/CSSImportRule.idl',
12 'css/CSSKeyframeRule.idl',
13 'css/CSSKeyframesRule.idl',
14 'css/CSSMatrix.idl',
15 'css/CSSMediaRule.idl', 10 'css/CSSMediaRule.idl',
16 'css/CSSMixFunctionValue.idl',
17 'css/CSSPageRule.idl', 11 'css/CSSPageRule.idl',
18 'css/CSSPrimitiveValue.idl', 12 'css/CSSPrimitiveValue.idl',
19 'css/CSSRegionRule.idl',
20 'css/CSSRule.idl', 13 'css/CSSRule.idl',
21 'css/CSSRuleList.idl', 14 'css/CSSRuleList.idl',
22 'css/CSSStyleDeclaration.idl', 15 'css/CSSStyleDeclaration.idl',
23 'css/CSSStyleRule.idl', 16 'css/CSSStyleRule.idl',
24 'css/CSSStyleSheet.idl', 17 'css/CSSStyleSheet.idl',
25 'css/CSSSupportsRule.idl', 18 'css/CSSSupportsRule.idl',
26 'css/CSSTransformValue.idl',
27 # We should probably add CSSUnknownRule.idl to this list, 19 # We should probably add CSSUnknownRule.idl to this list,
28 # but it currently causes a compile error. 20 # but it currently causes a compile error.
29 # 'css/CSSUnknownRule.idl', 21 # 'css/CSSUnknownRule.idl',
30 'css/CSSValue.idl', 22 'css/CSSValue.idl',
31 'css/CSSValueList.idl', 23 'css/CSSValueList.idl',
32 'css/CSSViewportRule.idl', 24 'css/CSSViewportRule.idl',
33 'css/Counter.idl', 25 'css/Counter.idl',
34 'css/FontLoader.idl', 26 'css/FontLoader.idl',
35 'css/MediaList.idl', 27 'css/MediaList.idl',
36 'css/MediaQueryList.idl', 28 'css/MediaQueryList.idl',
37 'css/Rect.idl', 29 'css/Rect.idl',
38 'css/RGBColor.idl', 30 'css/RGBColor.idl',
39 'css/StyleMedia.idl', 31 'css/StyleMedia.idl',
40 'css/StyleSheet.idl', 32 'css/StyleSheet.idl',
41 'css/StyleSheetList.idl', 33 'css/StyleSheetList.idl',
34 'css/WebKitCSSFilterRule.idl',
35 'css/WebKitCSSFilterValue.idl',
36 'css/WebKitCSSKeyframeRule.idl',
37 'css/WebKitCSSKeyframesRule.idl',
38 'css/WebKitCSSMatrix.idl',
39 'css/WebKitCSSMixFunctionValue.idl',
40 'css/WebKitCSSRegionRule.idl',
41 'css/WebKitCSSTransformValue.idl',
42 'dom/AnimationEvent.idl', 42 'dom/AnimationEvent.idl',
43 'dom/Attr.idl', 43 'dom/Attr.idl',
44 'dom/AutocompleteErrorEvent.idl', 44 'dom/AutocompleteErrorEvent.idl',
45 'dom/BeforeLoadEvent.idl', 45 'dom/BeforeLoadEvent.idl',
46 'dom/CDATASection.idl', 46 'dom/CDATASection.idl',
47 'dom/CharacterData.idl', 47 'dom/CharacterData.idl',
48 'dom/ClientRect.idl', 48 'dom/ClientRect.idl',
49 'dom/ClientRectList.idl', 49 'dom/ClientRectList.idl',
50 'dom/Clipboard.idl', 50 'dom/Clipboard.idl',
51 'dom/Comment.idl', 51 'dom/Comment.idl',
(...skipping 3640 matching lines...) Expand 10 before | Expand all | Expand 10 after
3692 'bison_exe': 'bison', 3692 'bison_exe': 'bison',
3693 # We specify a preprocess so it happens locally and won't get 3693 # We specify a preprocess so it happens locally and won't get
3694 # distributed to goma. 3694 # distributed to goma.
3695 # FIXME: /usr/bin/gcc won't exist on OSX forever. We want to 3695 # FIXME: /usr/bin/gcc won't exist on OSX forever. We want to
3696 # use /usr/bin/clang once we require Xcode 4.x. 3696 # use /usr/bin/clang once we require Xcode 4.x.
3697 'preprocessor': '--preprocessor "/usr/bin/gcc -E -P -x c++"' 3697 'preprocessor': '--preprocessor "/usr/bin/gcc -E -P -x c++"'
3698 }], 3698 }],
3699 ], 3699 ],
3700 } 3700 }
3701 } 3701 }
OLDNEW
« no previous file with comments | « Source/bindings/v8/custom/V8CSSValueCustom.cpp ('k') | Source/core/css/CSSFilterRule.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698