Home | History | Annotate | Download | only in source
      1 # Copyright (c) 2011 The WebRTC project authors. All Rights Reserved.
      2 # Use of this source code is governed by a BSD-style license
      3 # that can be found in the LICENSE file in the root of the source
      4 # tree. An additional intellectual property rights grant can be found
      5 # in the file PATENTS.  All contributing project authors may
      6 # be found in the AUTHORS file in the root of the source tree.
      7 
      8 {
      9   'targets': [
     10     {
     11       'target_name': 'video_coding_test',
     12       'type': 'executable',
     13       'dependencies': [
     14          'rtp_rtcp',
     15          'video_processing',
     16          'webrtc_video_coding',
     17          'webrtc_utility',
     18          '<(DEPTH)/testing/gtest.gyp:gtest',
     19          '<(DEPTH)/third_party/gflags/gflags.gyp:gflags',
     20          '<(webrtc_root)/test/test.gyp:test_support',
     21          '<(webrtc_root)/test/metrics.gyp:metrics',
     22          '<(webrtc_root)/common_video/common_video.gyp:common_video',
     23          '<(webrtc_root)/system_wrappers/source/system_wrappers.gyp:field_trial_default',
     24       ],
     25       'sources': [
     26         # headers
     27         '../test/codec_database_test.h',
     28         '../test/generic_codec_test.h',
     29         '../test/jitter_estimate_test.h',
     30         '../test/media_opt_test.h',
     31         '../test/mt_test_common.h',
     32         '../test/normal_test.h',
     33         '../test/pcap_file_reader.h',
     34         '../test/quality_modes_test.h',
     35         '../test/receiver_tests.h',
     36         '../test/release_test.h',
     37         '../test/rtp_file_reader.h',
     38         '../test/rtp_player.h',
     39         '../test/test_callbacks.h',
     40         '../test/test_util.h',
     41         '../test/vcm_payload_sink_factory.h',
     42         '../test/video_source.h',
     43 
     44         # sources
     45         '../test/codec_database_test.cc',
     46         '../test/generic_codec_test.cc',
     47         '../test/media_opt_test.cc',
     48         '../test/mt_test_common.cc',
     49         '../test/mt_rx_tx_test.cc',
     50         '../test/normal_test.cc',
     51         '../test/pcap_file_reader.cc',
     52         '../test/quality_modes_test.cc',
     53         '../test/rtp_file_reader.cc',
     54         '../test/rtp_player.cc',
     55         '../test/test_callbacks.cc',
     56         '../test/test_util.cc',
     57         '../test/tester_main.cc',
     58         '../test/vcm_payload_sink_factory.cc',
     59         '../test/video_rtp_play_mt.cc',
     60         '../test/video_rtp_play.cc',
     61         '../test/video_source.cc',
     62       ], # sources
     63     },
     64   ],
     65 }
     66