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

Side by Side Diff: webrtc/voice_engine/voice_engine.gyp

Issue 2037623002: Move FilePlayer and FileRecorder to Voice Engine (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@remove0
Patch Set: GN build fix Created 4 years, 6 months 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/voice_engine/transmit_mixer.h ('k') | no next file » | 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) 2011 The WebRTC project authors. All Rights Reserved. 1 # Copyright (c) 2011 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 { 9 {
10 'includes': [ 10 'includes': [
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
45 'include/voe_network.h', 45 'include/voe_network.h',
46 'include/voe_rtp_rtcp.h', 46 'include/voe_rtp_rtcp.h',
47 'include/voe_video_sync.h', 47 'include/voe_video_sync.h',
48 'include/voe_volume_control.h', 48 'include/voe_volume_control.h',
49 'channel.cc', 49 'channel.cc',
50 'channel.h', 50 'channel.h',
51 'channel_manager.cc', 51 'channel_manager.cc',
52 'channel_manager.h', 52 'channel_manager.h',
53 'channel_proxy.cc', 53 'channel_proxy.cc',
54 'channel_proxy.h', 54 'channel_proxy.h',
55 'coder.cc',
56 'coder.h',
57 'file_player.h',
58 'file_player_impl.cc',
59 'file_player_impl.h',
60 'file_recorder.h',
61 'file_recorder_impl.cc',
62 'file_recorder_impl.h',
55 'level_indicator.cc', 63 'level_indicator.cc',
56 'level_indicator.h', 64 'level_indicator.h',
57 'monitor_module.cc', 65 'monitor_module.cc',
58 'monitor_module.h', 66 'monitor_module.h',
59 'network_predictor.cc', 67 'network_predictor.cc',
60 'network_predictor.h', 68 'network_predictor.h',
61 'output_mixer.cc', 69 'output_mixer.cc',
62 'output_mixer.h', 70 'output_mixer.h',
63 'shared_data.cc', 71 'shared_data.cc',
64 'shared_data.h', 72 'shared_data.h',
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
102 }], 110 }],
103 ['include_tests==1', { 111 ['include_tests==1', {
104 'targets': [ 112 'targets': [
105 { 113 {
106 'target_name': 'voice_engine_unittests', 114 'target_name': 'voice_engine_unittests',
107 'type': '<(gtest_target_type)', 115 'type': '<(gtest_target_type)',
108 'dependencies': [ 116 'dependencies': [
109 'voice_engine', 117 'voice_engine',
110 '<(DEPTH)/testing/gmock.gyp:gmock', 118 '<(DEPTH)/testing/gmock.gyp:gmock',
111 '<(DEPTH)/testing/gtest.gyp:gtest', 119 '<(DEPTH)/testing/gtest.gyp:gtest',
120 '<(DEPTH)/third_party/gflags/gflags.gyp:gflags',
112 # The rest are to satisfy the unittests' include chain. 121 # The rest are to satisfy the unittests' include chain.
113 # This would be unnecessary if we used qualified includes. 122 # This would be unnecessary if we used qualified includes.
114 '<(webrtc_root)/common_audio/common_audio.gyp:common_audio', 123 '<(webrtc_root)/common_audio/common_audio.gyp:common_audio',
115 '<(webrtc_root)/modules/modules.gyp:audio_device', 124 '<(webrtc_root)/modules/modules.gyp:audio_device',
116 '<(webrtc_root)/modules/modules.gyp:audio_processing', 125 '<(webrtc_root)/modules/modules.gyp:audio_processing',
117 '<(webrtc_root)/modules/modules.gyp:audio_coding_module', 126 '<(webrtc_root)/modules/modules.gyp:audio_coding_module',
118 '<(webrtc_root)/modules/modules.gyp:audio_conference_mixer', 127 '<(webrtc_root)/modules/modules.gyp:audio_conference_mixer',
119 '<(webrtc_root)/modules/modules.gyp:media_file', 128 '<(webrtc_root)/modules/modules.gyp:media_file',
120 '<(webrtc_root)/modules/modules.gyp:rtp_rtcp', 129 '<(webrtc_root)/modules/modules.gyp:rtp_rtcp',
121 '<(webrtc_root)/modules/modules.gyp:webrtc_utility', 130 '<(webrtc_root)/modules/modules.gyp:webrtc_utility',
122 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers' , 131 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers' ,
123 '<(webrtc_root)/test/test.gyp:test_support_main', 132 '<(webrtc_root)/test/test.gyp:test_support_main',
124 ], 133 ],
125 'sources': [ 134 'sources': [
126 'channel_unittest.cc', 135 'channel_unittest.cc',
136 'file_player_unittests.cc',
127 'network_predictor_unittest.cc', 137 'network_predictor_unittest.cc',
128 'transmit_mixer_unittest.cc', 138 'transmit_mixer_unittest.cc',
129 'utility_unittest.cc', 139 'utility_unittest.cc',
130 'voe_audio_processing_unittest.cc', 140 'voe_audio_processing_unittest.cc',
131 'voe_base_unittest.cc', 141 'voe_base_unittest.cc',
132 'voe_codec_unittest.cc', 142 'voe_codec_unittest.cc',
133 'voe_network_unittest.cc', 143 'voe_network_unittest.cc',
134 'voice_engine_fixture.cc', 144 'voice_engine_fixture.cc',
135 'voice_engine_fixture.h', 145 'voice_engine_fixture.h',
136 ], 146 ],
(...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after
304 'sources': [ 314 'sources': [
305 'voe_auto_test.isolate', 315 'voe_auto_test.isolate',
306 ], 316 ],
307 }, 317 },
308 ], 318 ],
309 }], 319 }],
310 ], # conditions 320 ], # conditions
311 }], # include_tests==1 321 }], # include_tests==1
312 ], # conditions 322 ], # conditions
313 } 323 }
OLDNEW
« no previous file with comments | « webrtc/voice_engine/transmit_mixer.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698