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

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: Adapt to recent animation code changes 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 3651 matching lines...) Expand 10 before | Expand all | Expand 10 after
3662 'animation/DocumentTimelineTest.cpp', 3662 'animation/DocumentTimelineTest.cpp',
3663 'animation/PlayerTest.cpp', 3663 'animation/PlayerTest.cpp',
3664 'animation/TimedItemCalculationsTest.cpp', 3664 'animation/TimedItemCalculationsTest.cpp',
3665 'animation/TimedItemTest.cpp', 3665 'animation/TimedItemTest.cpp',
3666 'platform/DecimalTest.cpp', 3666 'platform/DecimalTest.cpp',
3667 'platform/SharedBufferTest.cpp', 3667 'platform/SharedBufferTest.cpp',
3668 'platform/chromium/ClipboardChromiumTest.cpp', 3668 'platform/chromium/ClipboardChromiumTest.cpp',
3669 'platform/graphics/chromium/AnimationTranslationUtilTest.cpp', 3669 'platform/graphics/chromium/AnimationTranslationUtilTest.cpp',
3670 'platform/image-decoders/ImageDecoderTest.cpp', 3670 'platform/image-decoders/ImageDecoderTest.cpp',
3671 'platform/image-decoders/gif/GIFImageDecoderTest.cpp', 3671 'platform/image-decoders/gif/GIFImageDecoderTest.cpp',
3672 'platform/image-decoders/webp/WEBPImageDecoderTest.cpp',
3672 'platform/text/DateTimeFormatTest.cpp', 3673 'platform/text/DateTimeFormatTest.cpp',
3673 'tests/CachedImageTest.cpp', 3674 'tests/CachedImageTest.cpp',
3674 'tests/HeapGraphSerializerTest.cpp', 3675 'tests/HeapGraphSerializerTest.cpp',
3675 'tests/LayoutUnit.cpp', 3676 'tests/LayoutUnit.cpp',
3676 'tests/LinkRelAttribute.cpp', 3677 'tests/LinkRelAttribute.cpp',
3677 ], 3678 ],
3678 'scripts_for_in_files': [ 3679 'scripts_for_in_files': [
3679 'scripts/in_file.py', 3680 'scripts/in_file.py',
3680 'scripts/in_generator.py', 3681 'scripts/in_generator.py',
3681 'scripts/license.py', 3682 'scripts/license.py',
(...skipping 17 matching lines...) Expand all
3699 'bison_exe': 'bison', 3700 'bison_exe': 'bison',
3700 # We specify a preprocess so it happens locally and won't get 3701 # We specify a preprocess so it happens locally and won't get
3701 # distributed to goma. 3702 # distributed to goma.
3702 # FIXME: /usr/bin/gcc won't exist on OSX forever. We want to 3703 # FIXME: /usr/bin/gcc won't exist on OSX forever. We want to
3703 # use /usr/bin/clang once we require Xcode 4.x. 3704 # use /usr/bin/clang once we require Xcode 4.x.
3704 'preprocessor': '--preprocessor "/usr/bin/gcc -E -P -x c++"' 3705 'preprocessor': '--preprocessor "/usr/bin/gcc -E -P -x c++"'
3705 }], 3706 }],
3706 ], 3707 ],
3707 } 3708 }
3708 } 3709 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698