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

Unified Diff: BUILD.gn

Issue 2201963002: gn: Don't let libyuv depend on libjpeg_turbo. (Closed) Base URL: https://chromium.googlesource.com/libyuv/libyuv.git@master
Patch Set: rebase2 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: BUILD.gn
diff --git a/BUILD.gn b/BUILD.gn
index 69730069c1f43d95ed931e36fe849431813be00a..fed8a68c0d58b15c02df72450e0193997143de3c 100644
--- a/BUILD.gn
+++ b/BUILD.gn
@@ -82,15 +82,13 @@ static_library("libyuv") {
public_configs = [ ":libyuv_config" ]
defines = []
+ deps = []
if (!is_ios) {
defines += [ "HAVE_JPEG" ]
+ deps += [ "//third_party:jpeg" ]
}
- deps = [
- "//third_party:jpeg",
- ]
-
if (use_neon) {
deps += [ ":libyuv_neon" ]
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698