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

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

Issue 1329083005: Add TransportFeedback adapter, adapting remote feedback to bwe estiamtor (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Bad merge, test issue Created 5 years, 3 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': [
(...skipping 21 matching lines...) Expand all
32 'overuse_estimator.h', 32 'overuse_estimator.h',
33 'rate_statistics.cc', 33 'rate_statistics.cc',
34 'rate_statistics.h', 34 'rate_statistics.h',
35 'remote_bitrate_estimator_abs_send_time.cc', 35 'remote_bitrate_estimator_abs_send_time.cc',
36 'remote_bitrate_estimator_abs_send_time.h', 36 'remote_bitrate_estimator_abs_send_time.h',
37 'remote_bitrate_estimator_single_stream.cc', 37 'remote_bitrate_estimator_single_stream.cc',
38 'remote_bitrate_estimator_single_stream.h', 38 'remote_bitrate_estimator_single_stream.h',
39 'remote_estimator_proxy.cc', 39 'remote_estimator_proxy.cc',
40 'remote_estimator_proxy.h', 40 'remote_estimator_proxy.h',
41 'send_time_history.cc', 41 'send_time_history.cc',
42 'transport_feedback_adapter.cc',
43 'transport_feedback_adapter.h',
42 'test/bwe_test_logging.cc', 44 'test/bwe_test_logging.cc',
43 'test/bwe_test_logging.h', 45 'test/bwe_test_logging.h',
44 ], # source 46 ], # source
45 'conditions': [ 47 'conditions': [
46 ['enable_bwe_test_logging==1', { 48 ['enable_bwe_test_logging==1', {
47 'defines': [ 'BWE_TEST_LOGGING_COMPILE_TIME_ENABLE=1' ], 49 'defines': [ 'BWE_TEST_LOGGING_COMPILE_TIME_ENABLE=1' ],
48 }, { 50 }, {
49 'defines': [ 'BWE_TEST_LOGGING_COMPILE_TIME_ENABLE=0' ], 51 'defines': [ 'BWE_TEST_LOGGING_COMPILE_TIME_ENABLE=0' ],
50 'sources!': [ 52 'sources!': [
51 'remote_bitrate_estimator/test/bwe_test_logging.cc' 53 'remote_bitrate_estimator/test/bwe_test_logging.cc'
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after
159 ], 161 ],
160 }, 162 },
161 'sources': [ 163 'sources': [
162 'tools/bwe_rtp_play.cc', 164 'tools/bwe_rtp_play.cc',
163 ], # source 165 ], # source
164 }, 166 },
165 ], 167 ],
166 }], # include_tests==1 168 }], # include_tests==1
167 ], 169 ],
168 } 170 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698