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

Unified Diff: build/linux/unbundle/libpng.gn

Issue 2122713002: unbundle: add GN files for libpng, libvpx, and re2 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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 | « no previous file | build/linux/unbundle/libvpx.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/linux/unbundle/libpng.gn
diff --git a/build/linux/unbundle/ffmpeg.gn b/build/linux/unbundle/libpng.gn
similarity index 50%
copy from build/linux/unbundle/ffmpeg.gn
copy to build/linux/unbundle/libpng.gn
index 9a4fbfd75a40957c3430f0d8c9e8d006892372c1..9ae5abe076ca1efa46c6ce3b4271de0b8dc4f2fd 100644
--- a/build/linux/unbundle/ffmpeg.gn
+++ b/build/linux/unbundle/libpng.gn
@@ -5,26 +5,21 @@
import("//build/config/linux/pkg_config.gni")
import("//build/shim_headers.gni")
-pkg_config("system_ffmpeg") {
- packages = [
- "libavcodec",
- "libavformat",
- "libavutil",
- ]
+pkg_config("system_libpng") {
+ packages = [ "libpng" ]
}
-shim_headers("ffmpeg_shim") {
+shim_headers("libpng_shim") {
root_path = "."
headers = [
- "libavcodec/avcodec.h",
- "libavformat/avformat.h",
- "libavutil/imgutils.h",
+ "png.h",
+ "pngconf.h",
]
}
-source_set("ffmpeg") {
+source_set("libpng") {
deps = [
- ":ffmpeg_shim",
+ ":libpng_shim",
]
- public_configs = [ ":system_ffmpeg" ]
+ public_configs = [ ":system_libpng" ]
}
« no previous file with comments | « no previous file | build/linux/unbundle/libvpx.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698