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

Side by Side Diff: webrtc/modules/remote_bitrate_estimator/BUILD.gn

Issue 1362303002: Reland "Wire up send-side bandwidth estimation." (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 5 years, 2 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 source_set("remote_bitrate_estimator") { 9 source_set("remote_bitrate_estimator") {
10 sources = [ 10 sources = [
(...skipping 18 matching lines...) Expand all
29 "aimd_rate_control.h", 29 "aimd_rate_control.h",
30 "include/send_time_history.h", 30 "include/send_time_history.h",
31 "inter_arrival.cc", 31 "inter_arrival.cc",
32 "inter_arrival.h", 32 "inter_arrival.h",
33 "overuse_detector.cc", 33 "overuse_detector.cc",
34 "overuse_detector.h", 34 "overuse_detector.h",
35 "overuse_estimator.cc", 35 "overuse_estimator.cc",
36 "overuse_estimator.h", 36 "overuse_estimator.h",
37 "remote_bitrate_estimator_abs_send_time.cc", 37 "remote_bitrate_estimator_abs_send_time.cc",
38 "remote_bitrate_estimator_single_stream.cc", 38 "remote_bitrate_estimator_single_stream.cc",
39 "remote_estimator_proxy.cc",
40 "remote_estimator_proxy.h",
39 "send_time_history.cc", 41 "send_time_history.cc",
42 "transport_feedback_adapter.cc",
43 "transport_feedback_adapter.h",
40 ] 44 ]
41 45
42 configs += [ "../..:common_config" ] 46 configs += [ "../..:common_config" ]
43 public_configs = [ "../..:common_inherited_config" ] 47 public_configs = [ "../..:common_inherited_config" ]
44 deps = [ 48 deps = [
45 "../..:webrtc_common", 49 "../..:webrtc_common",
46 ] 50 ]
47 51
48 if (is_clang) { 52 if (is_clang) {
49 # Suppress warnings from Chrome's Clang plugins. 53 # Suppress warnings from Chrome's Clang plugins.
50 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. 54 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details.
51 configs -= [ "//build/config/clang:find_bad_constructs" ] 55 configs -= [ "//build/config/clang:find_bad_constructs" ]
52 } 56 }
53 } 57 }
OLDNEW
« no previous file with comments | « webrtc/modules/modules.gyp ('k') | webrtc/modules/remote_bitrate_estimator/transport_feedback_adapter.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698