webrtc/modules/video_processing/main/test/vpm_tests.gyp

56 lines
1.4 KiB
Python

# Copyright (c) 2009 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
{
'includes': [
'../../../../common_settings.gypi', # Common settings
],
'targets': [
{
'target_name': 'VPMUnitTest',
'type': 'executable',
'dependencies': [
'../source/video_processing.gyp:video_processing',
'../../../utility/source/utility.gyp:webrtc_utility',
# The tests are based on gtest
'../../../../../testing/gtest.gyp:gtest',
'../../../../../testing/gtest.gyp:gtest_main',
],
'include_dirs': [
'../../../../system_wrappers/interface',
'../../../../common_video/vplib/main/interface',
],
'sources': [
# headers
'unit_test/unit_test.h',
# sources
'unit_test/brightness_detection_test.cc',
'unit_test/color_enhancement_test.cc',
'unit_test/deflickering_test.cc',
'unit_test/denoising_test.cc',
'unit_test/unit_test.cc',
], # source
'conditions': [
['OS=="linux"', {
'cflags': [
'-fexceptions',
],
}],
], # conditions
},
],
}
# Local Variables:
# tab-width:2
# indent-tabs-mode:nil
# End:
# vim: set expandtab tabstop=2 shiftwidth=2: