Commit 68786ccd authored by Nico Weber's avatar Nico Weber

gn: Don't let libyuv depend on libjpeg_turbo on iOS.

This dependency doesn't exist in the gyp build either, and it causes
problems on builds building 'all'.

BUG=633316
R=kjellander@chromium.org

Review URL: https://codereview.chromium.org/2201963002 .
parent eeea30ae
......@@ -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" ]
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment