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

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

Issue 1362923002: Revert of Wire up send-side bandwidth estimation. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Manual merge of revert 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",
41 "send_time_history.cc", 39 "send_time_history.cc",
42 "transport_feedback_adapter.cc",
43 "transport_feedback_adapter.h",
44 ] 40 ]
45 41
46 configs += [ "../..:common_config" ] 42 configs += [ "../..:common_config" ]
47 public_configs = [ "../..:common_inherited_config" ] 43 public_configs = [ "../..:common_inherited_config" ]
48 deps = [ 44 deps = [
49 "../..:webrtc_common", 45 "../..:webrtc_common",
50 ] 46 ]
51 47
52 if (is_clang) { 48 if (is_clang) {
53 # Suppress warnings from Chrome's Clang plugins. 49 # Suppress warnings from Chrome's Clang plugins.
54 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. 50 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details.
55 configs -= [ "//build/config/clang:find_bad_constructs" ] 51 configs -= [ "//build/config/clang:find_bad_constructs" ]
56 } 52 }
57 } 53 }
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