1# Copyright (c) 2012 The WebRTC project authors. All Rights Reserved.
2#
3# Use of this source code is governed by a BSD-style license
4# that can be found in the LICENSE file in the root of the source
5# tree. An additional intellectual property rights grant can be found
6# in the file PATENTS.  All contributing project authors may
7# be found in the AUTHORS file in the root of the source tree.
8{
9  'targets': [
10    {
11      'target_name': 'libvietest',
12      'type': 'static_library',
13      'dependencies': [
14        '<(webrtc_root)/system_wrappers/source/system_wrappers.gyp:system_wrappers',
15        '<(DEPTH)/testing/gtest.gyp:gtest',
16        '<(webrtc_root)/test/test.gyp:test_support',
17        'video_engine_core',
18      ],
19      'sources': [
20        # Helper classes
21        'include/vie_external_render_filter.h',
22        'include/vie_fake_camera.h',
23        'include/vie_file_capture_device.h',
24        'include/vie_to_file_renderer.h',
25
26        'helpers/vie_fake_camera.cc',
27        'helpers/vie_file_capture_device.cc',
28        'helpers/vie_to_file_renderer.cc',
29
30        # Testbed classes
31        'include/tb_capture_device.h',
32        'include/tb_external_transport.h',
33        'include/tb_I420_codec.h',
34        'include/tb_interfaces.h',
35        'include/tb_video_channel.h',
36
37        'testbed/tb_capture_device.cc',
38        'testbed/tb_external_transport.cc',
39        'testbed/tb_I420_codec.cc',
40        'testbed/tb_interfaces.cc',
41        'testbed/tb_video_channel.cc',
42      ],
43      # Disable warnings to enable Win64 build, issue 1323.
44      'msvs_disabled_warnings': [
45        4267,  # size_t to int truncation.
46      ],
47    },
48  ],
49}
50