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

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

Issue 2565323003: Move gif image decoder to SkCodec (Closed)
Patch Set: 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 1046 matching lines...) Expand 10 before | Expand all | Expand 10 after
1057 "image-decoders/ImageFrame.cpp", 1057 "image-decoders/ImageFrame.cpp",
1058 "image-decoders/ImageFrame.h", 1058 "image-decoders/ImageFrame.h",
1059 "image-decoders/SegmentReader.cpp", 1059 "image-decoders/SegmentReader.cpp",
1060 "image-decoders/SegmentReader.h", 1060 "image-decoders/SegmentReader.h",
1061 "image-decoders/bmp/BMPImageDecoder.cpp", 1061 "image-decoders/bmp/BMPImageDecoder.cpp",
1062 "image-decoders/bmp/BMPImageDecoder.h", 1062 "image-decoders/bmp/BMPImageDecoder.h",
1063 "image-decoders/bmp/BMPImageReader.cpp", 1063 "image-decoders/bmp/BMPImageReader.cpp",
1064 "image-decoders/bmp/BMPImageReader.h", 1064 "image-decoders/bmp/BMPImageReader.h",
1065 "image-decoders/gif/GIFImageDecoder.cpp", 1065 "image-decoders/gif/GIFImageDecoder.cpp",
1066 "image-decoders/gif/GIFImageDecoder.h", 1066 "image-decoders/gif/GIFImageDecoder.h",
1067 "image-decoders/gif/GIFImageReader.cpp",
1068 "image-decoders/gif/GIFImageReader.h",
1069 "image-decoders/ico/ICOImageDecoder.cpp", 1067 "image-decoders/ico/ICOImageDecoder.cpp",
1070 "image-decoders/ico/ICOImageDecoder.h", 1068 "image-decoders/ico/ICOImageDecoder.h",
1071 "image-decoders/jpeg/JPEGImageDecoder.cpp", 1069 "image-decoders/jpeg/JPEGImageDecoder.cpp",
1072 "image-decoders/jpeg/JPEGImageDecoder.h", 1070 "image-decoders/jpeg/JPEGImageDecoder.h",
1073 "image-decoders/png/PNGImageDecoder.cpp", 1071 "image-decoders/png/PNGImageDecoder.cpp",
1074 "image-decoders/png/PNGImageDecoder.h", 1072 "image-decoders/png/PNGImageDecoder.h",
1075 "image-decoders/png/PNGImageReader.cpp", 1073 "image-decoders/png/PNGImageReader.cpp",
1076 "image-decoders/png/PNGImageReader.h", 1074 "image-decoders/png/PNGImageReader.h",
1077 "image-decoders/webp/WEBPImageDecoder.cpp", 1075 "image-decoders/webp/WEBPImageDecoder.cpp",
1078 "image-decoders/webp/WEBPImageDecoder.h", 1076 "image-decoders/webp/WEBPImageDecoder.h",
(...skipping 341 matching lines...) Expand 10 before | Expand all | Expand 10 after
1420 ] 1418 ]
1421 1419
1422 defines = [ 1420 defines = [
1423 "BLINK_PLATFORM_IMPLEMENTATION=1", 1421 "BLINK_PLATFORM_IMPLEMENTATION=1",
1424 "INSIDE_BLINK", 1422 "INSIDE_BLINK",
1425 ] 1423 ]
1426 1424
1427 include_dirs = [ 1425 include_dirs = [
1428 #"$angle_path/include", 1426 #"$angle_path/include",
1429 "$root_gen_dir/blink", 1427 "$root_gen_dir/blink",
1428 "//third_party/skia/include",
1430 ] 1429 ]
1431 1430
1432 public_deps = [ 1431 public_deps = [
1433 ":make_platform_generated", 1432 ":make_platform_generated",
1434 "//base", 1433 "//base",
1435 "//cc", 1434 "//cc",
1436 "//cc/animation", 1435 "//cc/animation",
1437 "//gpu/command_buffer/client:client", 1436 "//gpu/command_buffer/client:client",
1438 "//gpu/command_buffer/client:gles2_c_lib", 1437 "//gpu/command_buffer/client:gles2_c_lib",
1439 "//gpu/command_buffer/client:gles2_interface", 1438 "//gpu/command_buffer/client:gles2_interface",
(...skipping 625 matching lines...) Expand 10 before | Expand all | Expand 10 after
2065 "//third_party/WebKit/Source:inside_blink", 2064 "//third_party/WebKit/Source:inside_blink",
2066 ] 2065 ]
2067 2066
2068 deps = [ 2067 deps = [
2069 ":test_support", 2068 ":test_support",
2070 "//cc/surfaces:surface_id", 2069 "//cc/surfaces:surface_id",
2071 "//testing/gmock", 2070 "//testing/gmock",
2072 "//testing/gtest", 2071 "//testing/gtest",
2073 ] 2072 ]
2074 } 2073 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698