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

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

Issue 1247293002: Add support for transport wide sequence numbers (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Rebase, again Created 5 years, 4 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 = [
11 "include/bwe_defines.h", 11 "include/bwe_defines.h",
12 "include/remote_bitrate_estimator.h", 12 "include/remote_bitrate_estimator.h",
13 "include/send_time_history.h",
13 "rate_statistics.cc", 14 "rate_statistics.cc",
14 "rate_statistics.h", 15 "rate_statistics.h",
16 "send_time_history.cc",
15 ] 17 ]
16 18
17 configs += [ "../../:common_inherited_config" ] 19 configs += [ "../../:common_inherited_config" ]
18 20
19 deps = [ 21 deps = [
20 ":rbe_components", 22 ":rbe_components",
21 "../..:webrtc_common", 23 "../..:webrtc_common",
22 "../../system_wrappers", 24 "../../system_wrappers",
23 ] 25 ]
24 } 26 }
(...skipping 17 matching lines...) Expand all
42 deps = [ 44 deps = [
43 "../..:webrtc_common", 45 "../..:webrtc_common",
44 ] 46 ]
45 47
46 if (is_clang) { 48 if (is_clang) {
47 # Suppress warnings from Chrome's Clang plugins. 49 # Suppress warnings from Chrome's Clang plugins.
48 # 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.
49 configs -= [ "//build/config/clang:find_bad_constructs" ] 51 configs -= [ "//build/config/clang:find_bad_constructs" ]
50 } 52 }
51 } 53 }
OLDNEW
« no previous file with comments | « webrtc/modules/pacing/packet_router_unittest.cc ('k') | webrtc/modules/remote_bitrate_estimator/include/send_time_history.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698