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

Unified Diff: BUILD.gn

Issue 2045293002: Add support for multiple frames in SkCodec (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Format BUILD.gn properly Created 4 years, 2 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | dm/DM.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: BUILD.gn
diff --git a/BUILD.gn b/BUILD.gn
index 3f88df5d279f4c6473054c6007bde952c14513f6..2ca8c323f55aaba299f91e1eeeb090f3a222e64b 100644
--- a/BUILD.gn
+++ b/BUILD.gn
@@ -14,7 +14,7 @@ declare_args() {
skia_use_expat = true
skia_use_fontconfig = is_linux
skia_use_freetype = is_android || is_fuchsia || is_linux
- skia_use_giflib = !is_fuchsia
+ skia_use_giflib = true
skia_use_libjpeg_turbo = true
skia_use_libpng = true
skia_use_libwebp = !is_fuchsia
@@ -342,10 +342,8 @@ optional("gif") {
enabled = skia_use_giflib
public_defines = [ "SK_HAS_GIF_LIBRARY" ]
msarett 2016/10/18 20:04:36 Now that we don't depend on giflib, can we get rid
scroggo_chromium 2016/10/18 20:41:47 Done.
- deps = [
- "//third_party/giflib",
- ]
sources = [
+ "src/codec/GIFImageReader.cpp",
"src/codec/SkGifCodec.cpp",
]
}
« no previous file with comments | « no previous file | dm/DM.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698