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

Unified Diff: third_party/libwebp/BUILD.gn

Issue 2188643002: GN: dm (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: gyp deps Created 4 years, 5 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 | « third_party/libpng/BUILD.gn ('k') | third_party/third_party.gni » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/libwebp/BUILD.gn
diff --git a/third_party/libwebp/BUILD.gn b/third_party/libwebp/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..99bf5469c652bfa06a2044ca426e9d70c19d4264
--- /dev/null
+++ b/third_party/libwebp/BUILD.gn
@@ -0,0 +1,59 @@
+# Copyright 2016 Google Inc.
+#
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+declare_args() {
+}
+
+import("../third_party.gni")
+
+third_party("libwebp") {
+ public_include_dirs = [ "../externals/libwebp" ]
+
+ sources = [
+ "../externals/libwebp/src/dec/alpha.c",
+ "../externals/libwebp/src/dec/buffer.c",
+ "../externals/libwebp/src/dec/frame.c",
+ "../externals/libwebp/src/dec/idec.c",
+ "../externals/libwebp/src/dec/io.c",
+ "../externals/libwebp/src/dec/quant.c",
+ "../externals/libwebp/src/dec/tree.c",
+ "../externals/libwebp/src/dec/vp8.c",
+ "../externals/libwebp/src/dec/vp8l.c",
+ "../externals/libwebp/src/dec/webp.c",
+ "../externals/libwebp/src/demux/demux.c",
+ "../externals/libwebp/src/dsp/alpha_processing.c",
+ "../externals/libwebp/src/dsp/alpha_processing_sse2.c",
+ "../externals/libwebp/src/dsp/alpha_processing_sse41.c",
+ "../externals/libwebp/src/dsp/cpu.c",
+ "../externals/libwebp/src/dsp/dec.c",
+ "../externals/libwebp/src/dsp/dec_clip_tables.c",
+ "../externals/libwebp/src/dsp/dec_sse2.c",
+ "../externals/libwebp/src/dsp/dec_sse41.c",
+ "../externals/libwebp/src/dsp/enc.c",
+ "../externals/libwebp/src/dsp/enc_sse2.c",
+ "../externals/libwebp/src/dsp/filters.c",
+ "../externals/libwebp/src/dsp/filters_sse2.c",
+ "../externals/libwebp/src/dsp/lossless.c",
+ "../externals/libwebp/src/dsp/lossless_sse2.c",
+ "../externals/libwebp/src/dsp/rescaler.c",
+ "../externals/libwebp/src/dsp/rescaler_sse2.c",
+ "../externals/libwebp/src/dsp/upsampling.c",
+ "../externals/libwebp/src/dsp/upsampling_sse2.c",
+ "../externals/libwebp/src/dsp/yuv.c",
+ "../externals/libwebp/src/dsp/yuv_sse2.c",
+ "../externals/libwebp/src/utils/bit_reader.c",
+ "../externals/libwebp/src/utils/bit_writer.c",
+ "../externals/libwebp/src/utils/color_cache.c",
+ "../externals/libwebp/src/utils/filters.c",
+ "../externals/libwebp/src/utils/huffman.c",
+ "../externals/libwebp/src/utils/huffman_encode.c",
+ "../externals/libwebp/src/utils/quant_levels.c",
+ "../externals/libwebp/src/utils/quant_levels_dec.c",
+ "../externals/libwebp/src/utils/random.c",
+ "../externals/libwebp/src/utils/rescaler.c",
+ "../externals/libwebp/src/utils/thread.c",
+ "../externals/libwebp/src/utils/utils.c",
+ ]
+}
« no previous file with comments | « third_party/libpng/BUILD.gn ('k') | third_party/third_party.gni » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698