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

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

Issue 18532004: Implement 'grid-template' parsing (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Same change, forgot to update css-properties-as-js-properties.html result 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',
(...skipping 564 matching lines...) Expand 10 before | Expand all | Expand 10 after
575 'css/CSSFontFaceSource.cpp', 575 'css/CSSFontFaceSource.cpp',
576 'css/CSSFontFaceSource.h', 576 'css/CSSFontFaceSource.h',
577 'css/CSSFontFaceSrcValue.cpp', 577 'css/CSSFontFaceSrcValue.cpp',
578 'css/CSSFontFaceSrcValue.h', 578 'css/CSSFontFaceSrcValue.h',
579 'css/CSSFontSelector.cpp', 579 'css/CSSFontSelector.cpp',
580 'css/CSSFontSelector.h', 580 'css/CSSFontSelector.h',
581 'css/CSSFunctionValue.cpp', 581 'css/CSSFunctionValue.cpp',
582 'css/CSSFunctionValue.h', 582 'css/CSSFunctionValue.h',
583 'css/CSSGradientValue.cpp', 583 'css/CSSGradientValue.cpp',
584 'css/CSSGradientValue.h', 584 'css/CSSGradientValue.h',
585 'css/CSSGridTemplateValue.cpp',
586 'css/CSSGridTemplateValue.h',
585 'css/CSSGroupingRule.cpp', 587 'css/CSSGroupingRule.cpp',
586 'css/CSSGroupingRule.h', 588 'css/CSSGroupingRule.h',
587 'css/CSSHostRule.cpp', 589 'css/CSSHostRule.cpp',
588 'css/CSSHostRule.h', 590 'css/CSSHostRule.h',
589 'css/CSSImageGeneratorValue.cpp', 591 'css/CSSImageGeneratorValue.cpp',
590 'css/CSSImageSetValue.cpp', 592 'css/CSSImageSetValue.cpp',
591 'css/CSSImageValue.cpp', 593 'css/CSSImageValue.cpp',
592 'css/CSSImportRule.cpp', 594 'css/CSSImportRule.cpp',
593 'css/CSSImportRule.h', 595 'css/CSSImportRule.h',
594 'css/CSSInheritedValue.cpp', 596 'css/CSSInheritedValue.cpp',
(...skipping 3137 matching lines...) Expand 10 before | Expand all | Expand 10 after
3732 'bison_exe': 'bison', 3734 'bison_exe': 'bison',
3733 # We specify a preprocess so it happens locally and won't get 3735 # We specify a preprocess so it happens locally and won't get
3734 # distributed to goma. 3736 # distributed to goma.
3735 # FIXME: /usr/bin/gcc won't exist on OSX forever. We want to 3737 # FIXME: /usr/bin/gcc won't exist on OSX forever. We want to
3736 # use /usr/bin/clang once we require Xcode 4.x. 3738 # use /usr/bin/clang once we require Xcode 4.x.
3737 'preprocessor': '--preprocessor "/usr/bin/gcc -E -P -x c++"' 3739 'preprocessor': '--preprocessor "/usr/bin/gcc -E -P -x c++"'
3738 }], 3740 }],
3739 ], 3741 ],
3740 } 3742 }
3741 } 3743 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698