summaryrefslogtreecommitdiff
path: root/deps/v8/build/linux/unbundle/libwebp.gn
diff options
context:
space:
mode:
Diffstat (limited to 'deps/v8/build/linux/unbundle/libwebp.gn')
-rw-r--r--deps/v8/build/linux/unbundle/libwebp.gn39
1 files changed, 39 insertions, 0 deletions
diff --git a/deps/v8/build/linux/unbundle/libwebp.gn b/deps/v8/build/linux/unbundle/libwebp.gn
new file mode 100644
index 0000000000..12574d87be
--- /dev/null
+++ b/deps/v8/build/linux/unbundle/libwebp.gn
@@ -0,0 +1,39 @@
+# Copyright 2016 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+import("//build/config/linux/pkg_config.gni")
+import("//build/shim_headers.gni")
+
+pkg_config("system_libwebp") {
+ packages = [
+ "libwebp",
+ "libwebpdemux",
+ "libwebpmux",
+ ]
+}
+
+shim_headers("libwebp_shim") {
+ root_path = "src"
+ headers = [
+ "webp/decode.h",
+ "webp/demux.h",
+ "webp/encode.h",
+ "webp/mux.h",
+ "webp/mux_types.h",
+ "webp/types.h",
+ ]
+}
+
+source_set("libwebp_webp") {
+ deps = [
+ ":libwebp_shim",
+ ]
+ public_configs = [ ":system_libwebp" ]
+}
+
+group("libwebp") {
+ deps = [
+ ":libwebp_webp",
+ ]
+}