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

Side by Side Diff: third_party/WebKit/Source/platform/BUILD.gn

Issue 1567053002: Animated PNG implementation Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Moved some code to PNGImageReader.cpp and PNGImageReader.h Created 4 years, 1 month 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 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 import("//build/config/features.gni") 5 import("//build/config/features.gni")
6 import("//build/config/ui.gni") 6 import("//build/config/ui.gni")
7 import("//testing/libfuzzer/fuzzer_test.gni") 7 import("//testing/libfuzzer/fuzzer_test.gni")
8 import("//testing/test.gni") 8 import("//testing/test.gni")
9 import("//third_party/WebKit/public/public_features.gni") 9 import("//third_party/WebKit/public/public_features.gni")
10 import("//third_party/WebKit/Source/build/scripts/scripts.gni") 10 import("//third_party/WebKit/Source/build/scripts/scripts.gni")
(...skipping 1691 matching lines...) Expand 10 before | Expand all | Expand 10 after
1702 "graphics/paint/PaintChunkerTest.cpp", 1702 "graphics/paint/PaintChunkerTest.cpp",
1703 "graphics/paint/PaintControllerTest.cpp", 1703 "graphics/paint/PaintControllerTest.cpp",
1704 "image-decoders/FastSharedBufferReaderTest.cpp", 1704 "image-decoders/FastSharedBufferReaderTest.cpp",
1705 "image-decoders/ImageDecoderTest.cpp", 1705 "image-decoders/ImageDecoderTest.cpp",
1706 "image-decoders/ImageDecoderTestHelpers.cpp", 1706 "image-decoders/ImageDecoderTestHelpers.cpp",
1707 "image-decoders/ImageDecoderTestHelpers.h", 1707 "image-decoders/ImageDecoderTestHelpers.h",
1708 "image-decoders/bmp/BMPImageDecoderTest.cpp", 1708 "image-decoders/bmp/BMPImageDecoderTest.cpp",
1709 "image-decoders/gif/GIFImageDecoderTest.cpp", 1709 "image-decoders/gif/GIFImageDecoderTest.cpp",
1710 "image-decoders/ico/ICOImageDecoderTest.cpp", 1710 "image-decoders/ico/ICOImageDecoderTest.cpp",
1711 "image-decoders/jpeg/JPEGImageDecoderTest.cpp", 1711 "image-decoders/jpeg/JPEGImageDecoderTest.cpp",
1712 "image-decoders/png/PNGImageDecoderTest.cpp",
1712 "image-decoders/webp/WEBPImageDecoderTest.cpp", 1713 "image-decoders/webp/WEBPImageDecoderTest.cpp",
1713 "json/JSONParserTest.cpp", 1714 "json/JSONParserTest.cpp",
1714 "json/JSONValuesTest.cpp", 1715 "json/JSONValuesTest.cpp",
1715 "mac/VersionUtilMacTest.mm", 1716 "mac/VersionUtilMacTest.mm",
1716 "mojo/CommonCustomTypesStructTraitsTest.cpp", 1717 "mojo/CommonCustomTypesStructTraitsTest.cpp",
1717 "mojo/GeometryStructTraitsTest.cpp", 1718 "mojo/GeometryStructTraitsTest.cpp",
1718 "mojo/KURLSecurityOriginTest.cpp", 1719 "mojo/KURLSecurityOriginTest.cpp",
1719 "network/EncodedFormDataTest.cpp", 1720 "network/EncodedFormDataTest.cpp",
1720 "network/HTTPParsersTest.cpp", 1721 "network/HTTPParsersTest.cpp",
1721 "network/LinkHeaderTest.cpp", 1722 "network/LinkHeaderTest.cpp",
(...skipping 283 matching lines...) Expand 10 before | Expand all | Expand 10 after
2005 "//third_party/WebKit/Source:inside_blink", 2006 "//third_party/WebKit/Source:inside_blink",
2006 ] 2007 ]
2007 2008
2008 deps = [ 2009 deps = [
2009 ":test_support", 2010 ":test_support",
2010 "//cc/surfaces:surface_id", 2011 "//cc/surfaces:surface_id",
2011 "//testing/gmock", 2012 "//testing/gmock",
2012 "//testing/gtest", 2013 "//testing/gtest",
2013 ] 2014 ]
2014 } 2015 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698