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

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: 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/CSSFilterRule.idl', 6 'css/CSSFilterRule.idl',
7 'css/CSSFilterValue.idl', 7 'css/CSSFilterValue.idl',
8 'css/CSSFontFaceLoadEvent.idl', 8 'css/CSSFontFaceLoadEvent.idl',
9 'css/CSSFontFaceRule.idl', 9 'css/CSSFontFaceRule.idl',
10 'css/CSSHostRule.idl', 10 'css/CSSHostRule.idl',
(...skipping 3644 matching lines...) Expand 10 before | Expand all | Expand 10 after
3655 'animation/DocumentTimelineTest.cpp', 3655 'animation/DocumentTimelineTest.cpp',
3656 'animation/PlayerTest.cpp', 3656 'animation/PlayerTest.cpp',
3657 'animation/TimedItemCalculationsTest.cpp', 3657 'animation/TimedItemCalculationsTest.cpp',
3658 'animation/TimedItemTest.cpp', 3658 'animation/TimedItemTest.cpp',
3659 'platform/DecimalTest.cpp', 3659 'platform/DecimalTest.cpp',
3660 'platform/SharedBufferTest.cpp', 3660 'platform/SharedBufferTest.cpp',
3661 'platform/chromium/ClipboardChromiumTest.cpp', 3661 'platform/chromium/ClipboardChromiumTest.cpp',
3662 'platform/graphics/chromium/AnimationTranslationUtilTest.cpp', 3662 'platform/graphics/chromium/AnimationTranslationUtilTest.cpp',
3663 'platform/image-decoders/ImageDecoderTest.cpp', 3663 'platform/image-decoders/ImageDecoderTest.cpp',
3664 'platform/image-decoders/gif/GIFImageDecoderTest.cpp', 3664 'platform/image-decoders/gif/GIFImageDecoderTest.cpp',
3665 'platform/image-decoders/webp/WEBPImageDecoderTest.cpp',
3665 'platform/text/DateTimeFormatTest.cpp', 3666 'platform/text/DateTimeFormatTest.cpp',
3666 'tests/CachedImageTest.cpp', 3667 'tests/CachedImageTest.cpp',
3667 'tests/HeapGraphSerializerTest.cpp', 3668 'tests/HeapGraphSerializerTest.cpp',
3668 'tests/LayoutUnit.cpp', 3669 'tests/LayoutUnit.cpp',
3669 'tests/LinkRelAttribute.cpp', 3670 'tests/LinkRelAttribute.cpp',
3670 ], 3671 ],
3671 'scripts_for_in_files': [ 3672 'scripts_for_in_files': [
3672 'scripts/in_file.py', 3673 'scripts/in_file.py',
3673 'scripts/in_generator.py', 3674 'scripts/in_generator.py',
3674 'scripts/license.py', 3675 'scripts/license.py',
(...skipping 17 matching lines...) Expand all
3692 'bison_exe': 'bison', 3693 'bison_exe': 'bison',
3693 # We specify a preprocess so it happens locally and won't get 3694 # We specify a preprocess so it happens locally and won't get
3694 # distributed to goma. 3695 # distributed to goma.
3695 # FIXME: /usr/bin/gcc won't exist on OSX forever. We want to 3696 # FIXME: /usr/bin/gcc won't exist on OSX forever. We want to
3696 # use /usr/bin/clang once we require Xcode 4.x. 3697 # use /usr/bin/clang once we require Xcode 4.x.
3697 'preprocessor': '--preprocessor "/usr/bin/gcc -E -P -x c++"' 3698 'preprocessor': '--preprocessor "/usr/bin/gcc -E -P -x c++"'
3698 }], 3699 }],
3699 ], 3700 ],
3700 } 3701 }
3701 } 3702 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698