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

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

Issue 13980003: Add animation support for WebP images (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Debug fix 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
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 3647 matching lines...) Expand 10 before | Expand all | Expand 10 after
3658 'animation/TimedItemTest.cpp', 3658 'animation/TimedItemTest.cpp',
3659 'loader/cache/CachedImageTest.cpp', 3659 'loader/cache/CachedImageTest.cpp',
3660 'loader/cache/MemoryCacheTest.cpp', 3660 'loader/cache/MemoryCacheTest.cpp',
3661 'platform/DecimalTest.cpp', 3661 'platform/DecimalTest.cpp',
3662 'platform/SharedBufferTest.cpp', 3662 'platform/SharedBufferTest.cpp',
3663 'platform/chromium/ClipboardChromiumTest.cpp', 3663 'platform/chromium/ClipboardChromiumTest.cpp',
3664 'platform/graphics/UnitBezierTest.cpp', 3664 'platform/graphics/UnitBezierTest.cpp',
3665 'platform/graphics/chromium/AnimationTranslationUtilTest.cpp', 3665 'platform/graphics/chromium/AnimationTranslationUtilTest.cpp',
3666 'platform/image-decoders/ImageDecoderTest.cpp', 3666 'platform/image-decoders/ImageDecoderTest.cpp',
3667 'platform/image-decoders/gif/GIFImageDecoderTest.cpp', 3667 'platform/image-decoders/gif/GIFImageDecoderTest.cpp',
3668 'platform/image-decoders/webp/WEBPImageDecoderTest.cpp',
3668 'platform/text/DateTimeFormatTest.cpp', 3669 'platform/text/DateTimeFormatTest.cpp',
3669 'tests/HeapGraphSerializerTest.cpp', 3670 'tests/HeapGraphSerializerTest.cpp',
3670 'tests/LayoutUnit.cpp', 3671 'tests/LayoutUnit.cpp',
3671 'tests/LinkRelAttribute.cpp', 3672 'tests/LinkRelAttribute.cpp',
3672 ], 3673 ],
3673 'scripts_for_in_files': [ 3674 'scripts_for_in_files': [
3674 'scripts/in_file.py', 3675 'scripts/in_file.py',
3675 'scripts/in_generator.py', 3676 'scripts/in_generator.py',
3676 'scripts/license.py', 3677 'scripts/license.py',
3677 'scripts/name_macros.py', 3678 'scripts/name_macros.py',
(...skipping 16 matching lines...) Expand all
3694 'bison_exe': 'bison', 3695 'bison_exe': 'bison',
3695 # We specify a preprocess so it happens locally and won't get 3696 # We specify a preprocess so it happens locally and won't get
3696 # distributed to goma. 3697 # distributed to goma.
3697 # FIXME: /usr/bin/gcc won't exist on OSX forever. We want to 3698 # FIXME: /usr/bin/gcc won't exist on OSX forever. We want to
3698 # use /usr/bin/clang once we require Xcode 4.x. 3699 # use /usr/bin/clang once we require Xcode 4.x.
3699 'preprocessor': '--preprocessor "/usr/bin/gcc -E -P -x c++"' 3700 'preprocessor': '--preprocessor "/usr/bin/gcc -E -P -x c++"'
3700 }], 3701 }],
3701 ], 3702 ],
3702 } 3703 }
3703 } 3704 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698