
BUG=2428 R=pbos@webrtc.org, phoglund@webrtc.org, stefan@webrtc.org Review URL: https://webrtc-codereview.appspot.com/4849004 git-svn-id: http://webrtc.googlecode.com/svn/trunk@5229 4adac7df-926f-26a2-2b94-8c16560cd09d
128 lines
3.7 KiB
Python
128 lines
3.7 KiB
Python
# Copyright (c) 2013 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.
|
|
{
|
|
'includes': [
|
|
'../build/common.gypi',
|
|
],
|
|
'targets': [
|
|
{
|
|
'target_name': 'webrtc_test_common',
|
|
'type': 'static_library',
|
|
'sources': [
|
|
'configurable_frame_size_encoder.cc',
|
|
'configurable_frame_size_encoder.h',
|
|
'direct_transport.cc',
|
|
'direct_transport.h',
|
|
'fake_audio_device.cc',
|
|
'fake_audio_device.h',
|
|
'fake_decoder.cc',
|
|
'fake_decoder.h',
|
|
'fake_encoder.cc',
|
|
'fake_encoder.h',
|
|
'flags.cc',
|
|
'flags.h',
|
|
'frame_generator_capturer.cc',
|
|
'frame_generator_capturer.h',
|
|
'gl/gl_renderer.cc',
|
|
'gl/gl_renderer.h',
|
|
'linux/glx_renderer.cc',
|
|
'linux/glx_renderer.h',
|
|
'linux/video_renderer_linux.cc',
|
|
'mac/run_tests.mm',
|
|
'mac/video_renderer_mac.h',
|
|
'mac/video_renderer_mac.mm',
|
|
'mock_transport.h',
|
|
'null_platform_renderer.cc',
|
|
'null_transport.cc',
|
|
'null_transport.h',
|
|
'rtp_rtcp_observer.h',
|
|
'run_tests.cc',
|
|
'run_tests.h',
|
|
'run_loop.cc',
|
|
'run_loop.h',
|
|
'statistics.cc',
|
|
'statistics.h',
|
|
'vcm_capturer.cc',
|
|
'vcm_capturer.h',
|
|
'video_capturer.cc',
|
|
'video_capturer.h',
|
|
'video_renderer.cc',
|
|
'video_renderer.h',
|
|
'win/d3d_renderer.cc',
|
|
'win/d3d_renderer.h',
|
|
'win/run_loop_win.cc',
|
|
],
|
|
'conditions': [
|
|
['OS=="linux"', {
|
|
'sources!': [
|
|
'null_platform_renderer.cc',
|
|
],
|
|
}],
|
|
['OS=="mac"', {
|
|
'sources!': [
|
|
'null_platform_renderer.cc',
|
|
'run_tests.cc',
|
|
],
|
|
}],
|
|
['OS!="linux" and OS!="mac"', {
|
|
'sources!' : [
|
|
'gl/gl_renderer.cc',
|
|
'gl/gl_renderer.h',
|
|
],
|
|
}],
|
|
['OS=="win"', {
|
|
'sources!': [
|
|
'null_platform_renderer.cc',
|
|
'run_loop.cc',
|
|
],
|
|
}],
|
|
],
|
|
'direct_dependent_settings': {
|
|
'conditions': [
|
|
['OS=="linux"', {
|
|
'libraries': [
|
|
'-lXext',
|
|
'-lX11',
|
|
'-lGL',
|
|
],
|
|
}],
|
|
#TODO(pbos) : These dependencies should not have to be here, they
|
|
# aren't used by test code directly, only by components
|
|
# used by the tests.
|
|
['OS=="android"', {
|
|
'libraries' : [
|
|
'-lGLESv2', '-llog',
|
|
],
|
|
}],
|
|
['OS=="mac"', {
|
|
'xcode_settings' : {
|
|
'OTHER_LDFLAGS' : [
|
|
'-framework Foundation',
|
|
'-framework AppKit',
|
|
'-framework Cocoa',
|
|
'-framework OpenGL',
|
|
'-framework CoreVideo',
|
|
'-framework CoreAudio',
|
|
'-framework AudioToolbox',
|
|
],
|
|
},
|
|
}],
|
|
],
|
|
},
|
|
'dependencies': [
|
|
'<(DEPTH)/testing/gtest.gyp:gtest',
|
|
'<(DEPTH)/third_party/gflags/gflags.gyp:gflags',
|
|
'<(webrtc_root)/modules/modules.gyp:video_capture_module',
|
|
'<(webrtc_root)/modules/modules.gyp:media_file',
|
|
'<(webrtc_root)/test/test.gyp:test_support',
|
|
'<(webrtc_root)/common_video/common_video.gyp:frame_generator',
|
|
],
|
|
},
|
|
],
|
|
}
|