Added condition for which jpeg lib to use.

BUG=
TEST=

Review URL: https://webrtc-codereview.appspot.com/638004

git-svn-id: http://webrtc.googlecode.com/svn/trunk@2357 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
mflodman@webrtc.org 2012-06-04 19:10:43 +00:00
parent 77fd39aa99
commit ad6083f414

View File

@ -51,7 +51,17 @@
],
}, {
# Need to add a directory normally exported by libjpeg.gyp.
'include_dirs': [ '<(DEPTH)/third_party/libjpeg', ],
'conditions': [
['use_libjpeg_turbo==1', {
'include_dirs': [
'<(DEPTH)/third_party/libjpeg_turbo',
],
}, {
'include_dirs': [
'<(DEPTH)/third_party/libjpeg',
],
}
] # conditions
}],
],
'sources': [