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

Side by Side Diff: webrtc/voice_engine/BUILD.gn

Issue 2672583002: Remove VoEVideoSync interface. (Closed)
Patch Set: rebase Created 3 years, 10 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
OLDNEW
1 # Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. 1 # Copyright (c) 2014 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 import("../webrtc.gni") 9 import("../webrtc.gni")
10 10
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
77 "include/voe_audio_processing.h", 77 "include/voe_audio_processing.h",
78 "include/voe_base.h", 78 "include/voe_base.h",
79 "include/voe_codec.h", 79 "include/voe_codec.h",
80 "include/voe_errors.h", 80 "include/voe_errors.h",
81 "include/voe_external_media.h", 81 "include/voe_external_media.h",
82 "include/voe_file.h", 82 "include/voe_file.h",
83 "include/voe_hardware.h", 83 "include/voe_hardware.h",
84 "include/voe_neteq_stats.h", 84 "include/voe_neteq_stats.h",
85 "include/voe_network.h", 85 "include/voe_network.h",
86 "include/voe_rtp_rtcp.h", 86 "include/voe_rtp_rtcp.h",
87 "include/voe_video_sync.h",
88 "include/voe_volume_control.h", 87 "include/voe_volume_control.h",
89 "monitor_module.cc", 88 "monitor_module.cc",
90 "monitor_module.h", 89 "monitor_module.h",
91 "output_mixer.cc", 90 "output_mixer.cc",
92 "output_mixer.h", 91 "output_mixer.h",
93 "shared_data.cc", 92 "shared_data.cc",
94 "shared_data.h", 93 "shared_data.h",
95 "statistics.cc", 94 "statistics.cc",
96 "statistics.h", 95 "statistics.h",
97 "transmit_mixer.cc", 96 "transmit_mixer.cc",
(...skipping 13 matching lines...) Expand all
111 "voe_file_impl.cc", 110 "voe_file_impl.cc",
112 "voe_file_impl.h", 111 "voe_file_impl.h",
113 "voe_hardware_impl.cc", 112 "voe_hardware_impl.cc",
114 "voe_hardware_impl.h", 113 "voe_hardware_impl.h",
115 "voe_neteq_stats_impl.cc", 114 "voe_neteq_stats_impl.cc",
116 "voe_neteq_stats_impl.h", 115 "voe_neteq_stats_impl.h",
117 "voe_network_impl.cc", 116 "voe_network_impl.cc",
118 "voe_network_impl.h", 117 "voe_network_impl.h",
119 "voe_rtp_rtcp_impl.cc", 118 "voe_rtp_rtcp_impl.cc",
120 "voe_rtp_rtcp_impl.h", 119 "voe_rtp_rtcp_impl.h",
121 "voe_video_sync_impl.cc",
122 "voe_video_sync_impl.h",
123 "voe_volume_control_impl.cc", 120 "voe_volume_control_impl.cc",
124 "voe_volume_control_impl.h", 121 "voe_volume_control_impl.h",
125 "voice_engine_defines.h", 122 "voice_engine_defines.h",
126 "voice_engine_impl.cc", 123 "voice_engine_impl.cc",
127 "voice_engine_impl.h", 124 "voice_engine_impl.h",
128 ] 125 ]
129 126
130 if (is_win) { 127 if (is_win) {
131 defines = [ "WEBRTC_DRIFT_COMPENSATION_SUPPORTED" ] 128 defines = [ "WEBRTC_DRIFT_COMPENSATION_SUPPORTED" ]
132 129
(...skipping 241 matching lines...) Expand 10 before | Expand all | Expand 10 after
374 "test/auto_test/standard/external_media_test.cc", 371 "test/auto_test/standard/external_media_test.cc",
375 "test/auto_test/standard/file_before_streaming_test.cc", 372 "test/auto_test/standard/file_before_streaming_test.cc",
376 "test/auto_test/standard/file_test.cc", 373 "test/auto_test/standard/file_test.cc",
377 "test/auto_test/standard/hardware_before_initializing_test.cc", 374 "test/auto_test/standard/hardware_before_initializing_test.cc",
378 "test/auto_test/standard/hardware_test.cc", 375 "test/auto_test/standard/hardware_test.cc",
379 "test/auto_test/standard/mixing_test.cc", 376 "test/auto_test/standard/mixing_test.cc",
380 "test/auto_test/standard/neteq_stats_test.cc", 377 "test/auto_test/standard/neteq_stats_test.cc",
381 "test/auto_test/standard/rtp_rtcp_before_streaming_test.cc", 378 "test/auto_test/standard/rtp_rtcp_before_streaming_test.cc",
382 "test/auto_test/standard/rtp_rtcp_extensions.cc", 379 "test/auto_test/standard/rtp_rtcp_extensions.cc",
383 "test/auto_test/standard/rtp_rtcp_test.cc", 380 "test/auto_test/standard/rtp_rtcp_test.cc",
384 "test/auto_test/standard/video_sync_test.cc",
385 "test/auto_test/standard/voe_base_misc_test.cc", 381 "test/auto_test/standard/voe_base_misc_test.cc",
386 "test/auto_test/standard/volume_test.cc", 382 "test/auto_test/standard/volume_test.cc",
387 "test/auto_test/voe_conference_test.cc", 383 "test/auto_test/voe_conference_test.cc",
388 "test/auto_test/voe_cpu_test.cc", 384 "test/auto_test/voe_cpu_test.cc",
389 "test/auto_test/voe_cpu_test.h", 385 "test/auto_test/voe_cpu_test.h",
390 "test/auto_test/voe_output_test.cc", 386 "test/auto_test/voe_output_test.cc",
391 "test/auto_test/voe_standard_test.cc", 387 "test/auto_test/voe_standard_test.cc",
392 "test/auto_test/voe_standard_test.h", 388 "test/auto_test/voe_standard_test.h",
393 "test/auto_test/voe_stress_test.cc", 389 "test/auto_test/voe_stress_test.cc",
394 "test/auto_test/voe_stress_test.h", 390 "test/auto_test/voe_stress_test.h",
(...skipping 23 matching lines...) Expand all
418 ] 414 ]
419 } 415 }
420 416
421 if (!build_with_chromium && is_clang) { 417 if (!build_with_chromium && is_clang) {
422 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163) . 418 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163) .
423 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 419 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
424 } 420 }
425 } 421 }
426 } 422 }
427 } 423 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698