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

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

Issue 2672583002: Remove VoEVideoSync interface. (Closed)
Patch Set: better thread checking 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_standard_test.cc", 384 "test/auto_test/voe_standard_test.cc",
389 "test/auto_test/voe_standard_test.h", 385 "test/auto_test/voe_standard_test.h",
390 "test/auto_test/voe_test_defines.h", 386 "test/auto_test/voe_test_defines.h",
391 "test/auto_test/voe_test_interface.h", 387 "test/auto_test/voe_test_interface.h",
392 ] 388 ]
393 389
394 if (!is_android) { 390 if (!is_android) {
(...skipping 18 matching lines...) Expand all
413 ] 409 ]
414 } 410 }
415 411
416 if (!build_with_chromium && is_clang) { 412 if (!build_with_chromium && is_clang) {
417 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163) . 413 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163) .
418 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 414 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
419 } 415 }
420 } 416 }
421 } 417 }
422 } 418 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698