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

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

Issue 2263983002: unbundle: add GN file for libjpeg (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 4 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/replace_gn_files.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/linux/unbundle/libjpeg.gn
diff --git a/build/linux/unbundle/libevent.gn b/build/linux/unbundle/libjpeg.gn
similarity index 57%
copy from build/linux/unbundle/libevent.gn
copy to build/linux/unbundle/libjpeg.gn
index 47e48e9b9927cd25045b67faae928961863a0a18..81ce3f97d7e3fdab63ab311896ca3d26d8dbbcba 100644
--- a/build/linux/unbundle/libevent.gn
+++ b/build/linux/unbundle/libjpeg.gn
@@ -4,14 +4,20 @@
import("//build/shim_headers.gni")
-shim_headers("libevent_shim") {
+shim_headers("libjpeg_shim") {
root_path = "."
- headers = [ "event.h" ]
+ headers = [ "jpeglib.h" ]
}
-source_set("libevent") {
+source_set("libjpeg") {
deps = [
- ":libevent_shim",
+ ":libjpeg_shim",
]
- libs = [ "event" ]
+ libs = [ "jpeg" ]
+}
+
+source_set("simd") {
+}
+
+source_set("simd_asm") {
}
« no previous file with comments | « no previous file | build/linux/unbundle/replace_gn_files.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698