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

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

Issue 2579613003: Add TransportFeedbackPacketLossTracker. (Closed)
Patch Set: on comments Created 3 years, 11 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("../build/webrtc.gni") 9 import("../build/webrtc.gni")
10 10
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
89 "monitor_module.cc", 89 "monitor_module.cc",
90 "monitor_module.h", 90 "monitor_module.h",
91 "output_mixer.cc", 91 "output_mixer.cc",
92 "output_mixer.h", 92 "output_mixer.h",
93 "shared_data.cc", 93 "shared_data.cc",
94 "shared_data.h", 94 "shared_data.h",
95 "statistics.cc", 95 "statistics.cc",
96 "statistics.h", 96 "statistics.h",
97 "transmit_mixer.cc", 97 "transmit_mixer.cc",
98 "transmit_mixer.h", 98 "transmit_mixer.h",
99 "transport_feedback_packet_loss_tracker.cc",
100 "transport_feedback_packet_loss_tracker.h",
99 "utility.cc", 101 "utility.cc",
100 "utility.h", 102 "utility.h",
101 "voe_audio_processing_impl.cc", 103 "voe_audio_processing_impl.cc",
102 "voe_audio_processing_impl.h", 104 "voe_audio_processing_impl.h",
103 "voe_base_impl.cc", 105 "voe_base_impl.cc",
104 "voe_base_impl.h", 106 "voe_base_impl.h",
105 "voe_codec_impl.cc", 107 "voe_codec_impl.cc",
106 "voe_codec_impl.h", 108 "voe_codec_impl.h",
107 "voe_external_media_impl.cc", 109 "voe_external_media_impl.cc",
108 "voe_external_media_impl.h", 110 "voe_external_media_impl.h",
(...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after
269 shard_timeout = 900 271 shard_timeout = 900
270 } 272 }
271 273
272 sources = [ 274 sources = [
273 "channel_unittest.cc", 275 "channel_unittest.cc",
274 "file_player_unittests.cc", 276 "file_player_unittests.cc",
275 "test/channel_transport/udp_socket_manager_unittest.cc", 277 "test/channel_transport/udp_socket_manager_unittest.cc",
276 "test/channel_transport/udp_socket_wrapper_unittest.cc", 278 "test/channel_transport/udp_socket_wrapper_unittest.cc",
277 "test/channel_transport/udp_transport_unittest.cc", 279 "test/channel_transport/udp_transport_unittest.cc",
278 "transmit_mixer_unittest.cc", 280 "transmit_mixer_unittest.cc",
281 "transport_feedback_packet_loss_tracker_unittest.cc",
279 "utility_unittest.cc", 282 "utility_unittest.cc",
280 "voe_audio_processing_unittest.cc", 283 "voe_audio_processing_unittest.cc",
281 "voe_base_unittest.cc", 284 "voe_base_unittest.cc",
282 "voe_codec_unittest.cc", 285 "voe_codec_unittest.cc",
283 "voe_network_unittest.cc", 286 "voe_network_unittest.cc",
284 "voice_engine_fixture.cc", 287 "voice_engine_fixture.cc",
285 "voice_engine_fixture.h", 288 "voice_engine_fixture.h",
286 ] 289 ]
287 290
288 data = [ 291 data = [
(...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after
414 ] 417 ]
415 } 418 }
416 419
417 if (!build_with_chromium && is_clang) { 420 if (!build_with_chromium && is_clang) {
418 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163) . 421 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163) .
419 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 422 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
420 } 423 }
421 } 424 }
422 } 425 }
423 } 426 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698