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

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

Issue 2565323003: Move gif image decoder to SkCodec (Closed)
Patch Set: Add incremental decode, address code review comments. Created 4 years 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 334 matching lines...) Expand 10 before | Expand all | Expand 10 after
345 "Theme.h", 345 "Theme.h",
346 "ThemeTypes.h", 346 "ThemeTypes.h",
347 "Timer.cpp", 347 "Timer.cpp",
348 "Timer.h", 348 "Timer.h",
349 "UUID.cpp", 349 "UUID.cpp",
350 "UUID.h", 350 "UUID.h",
351 "UserGestureIndicator.cpp", 351 "UserGestureIndicator.cpp",
352 "UserGestureIndicator.h", 352 "UserGestureIndicator.h",
353 "WaitableEvent.cpp", 353 "WaitableEvent.cpp",
354 "WaitableEvent.h", 354 "WaitableEvent.h",
355 "WebFrameScheduler.h", 355 "WebFrameScheduler.h",
scroggo_chromium 2016/12/16 15:03:48 nit: I know you didn't change this line, but you r
cblume 2016/12/16 17:43:41 Makes sense to rebase in a separate patch. I'm a l
356 "WebIconSizesParser.cpp", 356 "WebIconSizesParser.cpp",
357 "WebScheduler.cpp", 357 "WebScheduler.cpp",
358 "WebTaskRunner.cpp", 358 "WebTaskRunner.cpp",
359 "WebTaskRunner.h", 359 "WebTaskRunner.h",
360 "WebTextInputInfo.cpp", 360 "WebTextInputInfo.cpp",
361 "WebThread.cpp", 361 "WebThread.cpp",
362 "WebThreadSupportingGC.cpp", 362 "WebThreadSupportingGC.cpp",
363 "WebThreadSupportingGC.h", 363 "WebThreadSupportingGC.h",
364 "WebURLLoader.cpp", 364 "WebURLLoader.cpp",
365 "Widget.cpp", 365 "Widget.cpp",
(...skipping 688 matching lines...) Expand 10 before | Expand all | Expand 10 after
1054 "image-decoders/ImageFrame.cpp", 1054 "image-decoders/ImageFrame.cpp",
1055 "image-decoders/ImageFrame.h", 1055 "image-decoders/ImageFrame.h",
1056 "image-decoders/SegmentReader.cpp", 1056 "image-decoders/SegmentReader.cpp",
1057 "image-decoders/SegmentReader.h", 1057 "image-decoders/SegmentReader.h",
1058 "image-decoders/bmp/BMPImageDecoder.cpp", 1058 "image-decoders/bmp/BMPImageDecoder.cpp",
1059 "image-decoders/bmp/BMPImageDecoder.h", 1059 "image-decoders/bmp/BMPImageDecoder.h",
1060 "image-decoders/bmp/BMPImageReader.cpp", 1060 "image-decoders/bmp/BMPImageReader.cpp",
1061 "image-decoders/bmp/BMPImageReader.h", 1061 "image-decoders/bmp/BMPImageReader.h",
1062 "image-decoders/gif/GIFImageDecoder.cpp", 1062 "image-decoders/gif/GIFImageDecoder.cpp",
1063 "image-decoders/gif/GIFImageDecoder.h", 1063 "image-decoders/gif/GIFImageDecoder.h",
1064 "image-decoders/gif/GIFImageReader.cpp",
1065 "image-decoders/gif/GIFImageReader.h",
1066 "image-decoders/ico/ICOImageDecoder.cpp", 1064 "image-decoders/ico/ICOImageDecoder.cpp",
1067 "image-decoders/ico/ICOImageDecoder.h", 1065 "image-decoders/ico/ICOImageDecoder.h",
1068 "image-decoders/jpeg/JPEGImageDecoder.cpp", 1066 "image-decoders/jpeg/JPEGImageDecoder.cpp",
1069 "image-decoders/jpeg/JPEGImageDecoder.h", 1067 "image-decoders/jpeg/JPEGImageDecoder.h",
1070 "image-decoders/png/PNGImageDecoder.cpp", 1068 "image-decoders/png/PNGImageDecoder.cpp",
1071 "image-decoders/png/PNGImageDecoder.h", 1069 "image-decoders/png/PNGImageDecoder.h",
1072 "image-decoders/png/PNGImageReader.cpp", 1070 "image-decoders/png/PNGImageReader.cpp",
1073 "image-decoders/png/PNGImageReader.h", 1071 "image-decoders/png/PNGImageReader.h",
1074 "image-decoders/webp/WEBPImageDecoder.cpp", 1072 "image-decoders/webp/WEBPImageDecoder.cpp",
1075 "image-decoders/webp/WEBPImageDecoder.h", 1073 "image-decoders/webp/WEBPImageDecoder.h",
(...skipping 994 matching lines...) Expand 10 before | Expand all | Expand 10 after
2070 "//third_party/WebKit/Source:inside_blink", 2068 "//third_party/WebKit/Source:inside_blink",
2071 ] 2069 ]
2072 2070
2073 deps = [ 2071 deps = [
2074 ":test_support", 2072 ":test_support",
2075 "//cc/surfaces:surface_id", 2073 "//cc/surfaces:surface_id",
2076 "//testing/gmock", 2074 "//testing/gmock",
2077 "//testing/gtest", 2075 "//testing/gtest",
2078 ] 2076 ]
2079 } 2077 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698