aboutsummaryrefslogtreecommitdiff
path: root/BUILD.gn
diff options
context:
space:
mode:
authorLeon Scroggins III <scroggo@google.com>2018-10-26 09:25:51 -0400
committerSkia Commit-Bot <skia-commit-bot@chromium.org>2018-10-26 13:53:04 +0000
commite93ec68a52599bfe109d196f6ae3576f40056de2 (patch)
tree94cff33cf38412a677c3ccf7c316cef667152079 /BUILD.gn
parente2fd74b48f6f7bc445abbb5f7b6e188d904601bf (diff)
downloadskqp-e93ec68a52599bfe109d196f6ae3576f40056de2.tar.gz
Reland "New GIF codec; new third_party/wuffs dep"
This reverts commit 7d1c9ec49f8a846cef833a0f956cf9c91a298145. Bug: skia:8235 Change-Id: I830ba00a87e85c80f7e8583f5dfa105cd60029b2 Reviewed-on: https://skia-review.googlesource.com/c/165301 Commit-Queue: Leon Scroggins <scroggo@google.com> Commit-Queue: Brian Osman <brianosman@google.com> Auto-Submit: Leon Scroggins <scroggo@google.com> Reviewed-by: Brian Osman <brianosman@google.com>
Diffstat (limited to 'BUILD.gn')
-rw-r--r--BUILD.gn14
1 files changed, 14 insertions, 0 deletions
diff --git a/BUILD.gn b/BUILD.gn
index 02ec8989ee..61255531a7 100644
--- a/BUILD.gn
+++ b/BUILD.gn
@@ -32,6 +32,7 @@ declare_args() {
skia_use_lua = is_skia_dev_build && !is_ios
skia_use_opencl = false
skia_use_piex = !is_win
+ skia_use_wuffs = false
skia_use_zlib = true
skia_use_metal = false
skia_use_libheif = is_skia_dev_build
@@ -802,6 +803,18 @@ optional("webp") {
]
}
+optional("wuffs") {
+ enabled = skia_use_wuffs
+ public_defines = [ "SK_HAS_WUFFS_LIBRARY" ]
+
+ deps = [
+ "//third_party/wuffs",
+ ]
+ sources = [
+ "src/codec/SkWuffsCodec.cpp",
+ ]
+}
+
optional("xml") {
enabled = skia_use_expat
public_defines = [ "SK_XML" ]
@@ -874,6 +887,7 @@ component("skia") {
":sse42",
":ssse3",
":webp",
+ ":wuffs",
":xml",
]