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

Side by Side Diff: webrtc/modules/remote_bitrate_estimator/remote_bitrate_estimator.gypi

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) 2011 The WebRTC project authors. All Rights Reserved. 1 # Copyright (c) 2011 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 { 9 {
10 'includes': [ 10 'includes': [
11 '../../build/common.gypi', 11 '../../build/common.gypi',
12 ], 12 ],
13 'targets': [ 13 'targets': [
14 { 14 {
15 'target_name': 'remote_bitrate_estimator', 15 'target_name': 'remote_bitrate_estimator',
16 'type': 'static_library', 16 'type': 'static_library',
17 'dependencies': [ 17 'dependencies': [
18 '<(webrtc_root)/common.gyp:webrtc_common', 18 '<(webrtc_root)/common.gyp:webrtc_common',
19 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers', 19 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers',
20 ], 20 ],
21 'sources': [ 21 'sources': [
22 'include/bwe_defines.h', 22 'include/bwe_defines.h',
23 'include/remote_bitrate_estimator.h', 23 'include/remote_bitrate_estimator.h',
24 'include/send_time_history.h',
24 'aimd_rate_control.cc', 25 'aimd_rate_control.cc',
25 'aimd_rate_control.h', 26 'aimd_rate_control.h',
26 'inter_arrival.cc', 27 'inter_arrival.cc',
27 'inter_arrival.h', 28 'inter_arrival.h',
28 'overuse_detector.cc', 29 'overuse_detector.cc',
29 'overuse_detector.h', 30 'overuse_detector.h',
30 'overuse_estimator.cc', 31 'overuse_estimator.cc',
31 'overuse_estimator.h', 32 'overuse_estimator.h',
32 'rate_statistics.cc', 33 'rate_statistics.cc',
33 'rate_statistics.h', 34 'rate_statistics.h',
34 'remote_bitrate_estimator_abs_send_time.cc', 35 'remote_bitrate_estimator_abs_send_time.cc',
35 'remote_bitrate_estimator_abs_send_time.h', 36 'remote_bitrate_estimator_abs_send_time.h',
36 'remote_bitrate_estimator_single_stream.cc', 37 'remote_bitrate_estimator_single_stream.cc',
37 'remote_bitrate_estimator_single_stream.h', 38 'remote_bitrate_estimator_single_stream.h',
39 'send_time_history.cc',
38 'test/bwe_test_logging.cc', 40 'test/bwe_test_logging.cc',
39 'test/bwe_test_logging.h', 41 'test/bwe_test_logging.h',
40 ], # source 42 ], # source
41 'conditions': [ 43 'conditions': [
42 ['enable_bwe_test_logging==1', { 44 ['enable_bwe_test_logging==1', {
43 'defines': [ 'BWE_TEST_LOGGING_COMPILE_TIME_ENABLE=1' ], 45 'defines': [ 'BWE_TEST_LOGGING_COMPILE_TIME_ENABLE=1' ],
44 }, { 46 }, {
45 'defines': [ 'BWE_TEST_LOGGING_COMPILE_TIME_ENABLE=0' ], 47 'defines': [ 'BWE_TEST_LOGGING_COMPILE_TIME_ENABLE=0' ],
46 'sources!': [ 48 'sources!': [
47 'remote_bitrate_estimator/test/bwe_test_logging.cc' 49 'remote_bitrate_estimator/test/bwe_test_logging.cc'
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after
155 ], 157 ],
156 }, 158 },
157 'sources': [ 159 'sources': [
158 'tools/bwe_rtp_play.cc', 160 'tools/bwe_rtp_play.cc',
159 ], # source 161 ], # source
160 }, 162 },
161 ], 163 ],
162 }], # include_tests==1 164 }], # include_tests==1
163 ], 165 ],
164 } 166 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698