blob: 1738a3de09ad01326a0ef38cd4aa4e8e81690a66 [file] [log] [blame]
# Copyright (c) 2012 The WebRTC project authors. All Rights Reserved.
#
# Use of this source code is governed by a BSD-style license
# that can be found in the LICENSE file in the root of the source
# tree. An additional intellectual property rights grant can be found
# in the file PATENTS. All contributing project authors may
# be found in the AUTHORS file in the root of the source tree.
{
'variables': {
'use_libjpeg_turbo%': '<(use_libjpeg_turbo)',
},
'targets': [
{
'target_name': 'webrtc_jpeg',
'type': '<(library)',
'dependencies': [
'webrtc_libyuv',
],
'include_dirs': [
'include',
'<(webrtc_root)',
'<(webrtc_root)/common_video/interface',
],
'direct_dependent_settings': {
'include_dirs': [
'include',
'<(webrtc_root)/common_video/interface',
],
},
'conditions': [
['build_libjpeg==1', {
'conditions': [
['build_with_chromium==1', {
'dependencies': [
'<(libjpeg_gyp_path):libjpeg',
],
}, {
'conditions': [
['use_libjpeg_turbo==1', {
'dependencies': [
'<(DEPTH)/third_party/libjpeg_turbo/libjpeg.gyp:libjpeg',
],
}, {
'dependencies': [
'<(DEPTH)/third_party/libjpeg/libjpeg.gyp:libjpeg',
],
}],
],
}],
],
}, {
# Need to add a directory normally exported by libjpeg.gyp.
'include_dirs': [ '<(DEPTH)/third_party/libjpeg', ],
}],
],
'sources': [
'include/jpeg.h',
'data_manager.cc',
'data_manager.h',
'jpeg.cc',
],
},
], # targets
# Exclude the test target when building with chromium.
'conditions': [
['build_with_chromium==0', {
'targets': [
{
'target_name': 'jpeg_unittests',
'type': 'executable',
'dependencies': [
'webrtc_jpeg',
'<(webrtc_root)/../testing/gtest.gyp:gtest',
'<(webrtc_root)/../test/test.gyp:test_support_main',
],
'sources': [
'jpeg_unittest.cc',
],
},
] # targets
}], # build_with_chromium
], # conditions
}
# Local Variables:
# tab-width:2
# indent-tabs-mode:nil
# End:
# vim: set expandtab tabstop=2 shiftwidth=2: