Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(140)

Side by Side Diff: webrtc/test/webrtc_test_common.gyp

Issue 1402403008: Changed FakeVoiceEngine into a MockVoiceEngine. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: unneeded include Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « webrtc/test/mock_voice_engine.h ('k') | webrtc/voice_engine/include/voe_rtp_rtcp.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2013 The WebRTC project authors. All Rights Reserved. 1 # Copyright (c) 2013 The WebRTC project authors. All Rights Reserved.
2 # 2 #
3 # Use of this source code is governed by a BSD-style license 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 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 5 # tree. An additional intellectual property rights grant can be found
6 # in the file PATENTS. All contributing project authors may 6 # in the file PATENTS. All contributing project authors may
7 # be found in the AUTHORS file in the root of the source tree. 7 # be found in the AUTHORS file in the root of the source tree.
8 { 8 {
9 'includes': [ 9 'includes': [
10 '../build/common.gypi', 10 '../build/common.gypi',
(...skipping 14 matching lines...) Expand all
25 'encoder_settings.cc', 25 'encoder_settings.cc',
26 'encoder_settings.h', 26 'encoder_settings.h',
27 'fake_audio_device.cc', 27 'fake_audio_device.cc',
28 'fake_audio_device.h', 28 'fake_audio_device.h',
29 'fake_decoder.cc', 29 'fake_decoder.cc',
30 'fake_decoder.h', 30 'fake_decoder.h',
31 'fake_encoder.cc', 31 'fake_encoder.cc',
32 'fake_encoder.h', 32 'fake_encoder.h',
33 'fake_network_pipe.cc', 33 'fake_network_pipe.cc',
34 'fake_network_pipe.h', 34 'fake_network_pipe.h',
35 'fake_voice_engine.cc',
36 'fake_voice_engine.h',
37 'frame_generator_capturer.cc', 35 'frame_generator_capturer.cc',
38 'frame_generator_capturer.h', 36 'frame_generator_capturer.h',
39 'layer_filtering_transport.cc', 37 'layer_filtering_transport.cc',
40 'layer_filtering_transport.h', 38 'layer_filtering_transport.h',
41 'mock_transport.h', 39 'mock_transport.h',
40 'mock_voice_engine.h',
42 'null_transport.cc', 41 'null_transport.cc',
43 'null_transport.h', 42 'null_transport.h',
44 'random.cc', 43 'random.cc',
45 'random.h', 44 'random.h',
46 'rtp_rtcp_observer.h', 45 'rtp_rtcp_observer.h',
47 'run_loop.cc', 46 'run_loop.cc',
48 'run_loop.h', 47 'run_loop.h',
49 'statistics.cc', 48 'statistics.cc',
50 'statistics.h', 49 'statistics.h',
51 'vcm_capturer.cc', 50 'vcm_capturer.cc',
52 'vcm_capturer.h', 51 'vcm_capturer.h',
53 'video_capturer.cc', 52 'video_capturer.cc',
54 'video_capturer.h', 53 'video_capturer.h',
55 'win/run_loop_win.cc', 54 'win/run_loop_win.cc',
56 ], 55 ],
57 'conditions': [ 56 'conditions': [
58 ['OS=="win"', { 57 ['OS=="win"', {
59 'sources!': [ 58 'sources!': [
60 'run_loop.cc', 59 'run_loop.cc',
61 ], 60 ],
62 }], 61 }],
63 ], 62 ],
64 'dependencies': [ 63 'dependencies': [
64 '<(DEPTH)/testing/gmock.gyp:gmock',
65 '<(DEPTH)/testing/gtest.gyp:gtest', 65 '<(DEPTH)/testing/gtest.gyp:gtest',
66 '<(DEPTH)/third_party/gflags/gflags.gyp:gflags', 66 '<(DEPTH)/third_party/gflags/gflags.gyp:gflags',
67 '<(webrtc_root)/base/base.gyp:rtc_base', 67 '<(webrtc_root)/base/base.gyp:rtc_base',
68 '<(webrtc_root)/common.gyp:webrtc_common', 68 '<(webrtc_root)/common.gyp:webrtc_common',
69 '<(webrtc_root)/modules/modules.gyp:media_file', 69 '<(webrtc_root)/modules/modules.gyp:media_file',
70 '<(webrtc_root)/modules/modules.gyp:video_render', 70 '<(webrtc_root)/modules/modules.gyp:video_render',
71 '<(webrtc_root)/test/test.gyp:frame_generator', 71 '<(webrtc_root)/test/test.gyp:frame_generator',
72 '<(webrtc_root)/test/test.gyp:test_support', 72 '<(webrtc_root)/test/test.gyp:test_support',
73 '<(webrtc_root)/test/test.gyp:rtp_test_utils', 73 '<(webrtc_root)/test/test.gyp:rtp_test_utils',
74 '<(webrtc_root)/webrtc.gyp:webrtc', 74 '<(webrtc_root)/webrtc.gyp:webrtc',
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after
167 'fake_network_pipe_unittest.cc', 167 'fake_network_pipe_unittest.cc',
168 'frame_generator_unittest.cc', 168 'frame_generator_unittest.cc',
169 'rtp_file_reader_unittest.cc', 169 'rtp_file_reader_unittest.cc',
170 'rtp_file_writer_unittest.cc', 170 'rtp_file_writer_unittest.cc',
171 ], 171 ],
172 }, 172 },
173 ], #targets 173 ], #targets
174 }], # include_tests 174 }], # include_tests
175 ], # conditions 175 ], # conditions
176 } 176 }
OLDNEW
« no previous file with comments | « webrtc/test/mock_voice_engine.h ('k') | webrtc/voice_engine/include/voe_rtp_rtcp.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698