OLD | NEW |
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 20 matching lines...) Expand all Loading... |
31 'overuse_detector.h', | 31 'overuse_detector.h', |
32 'overuse_estimator.cc', | 32 'overuse_estimator.cc', |
33 'overuse_estimator.h', | 33 'overuse_estimator.h', |
34 'remote_bitrate_estimator_abs_send_time.cc', | 34 'remote_bitrate_estimator_abs_send_time.cc', |
35 'remote_bitrate_estimator_abs_send_time.h', | 35 'remote_bitrate_estimator_abs_send_time.h', |
36 'remote_bitrate_estimator_single_stream.cc', | 36 'remote_bitrate_estimator_single_stream.cc', |
37 'remote_bitrate_estimator_single_stream.h', | 37 'remote_bitrate_estimator_single_stream.h', |
38 'remote_estimator_proxy.cc', | 38 'remote_estimator_proxy.cc', |
39 'remote_estimator_proxy.h', | 39 'remote_estimator_proxy.h', |
40 'send_time_history.cc', | 40 'send_time_history.cc', |
| 41 'transport_feedback_adapter.cc', |
| 42 'transport_feedback_adapter.h', |
41 'test/bwe_test_logging.h', | 43 'test/bwe_test_logging.h', |
42 ], # source | 44 ], # source |
43 'conditions': [ | 45 'conditions': [ |
44 ['include_tests==0', { | 46 ['include_tests==0', { |
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 'sources': [ | 50 'sources': [ |
49 'test/bwe_test_logging.cc' | 51 'test/bwe_test_logging.cc' |
50 ], | 52 ], |
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
113 ], | 115 ], |
114 }, | 116 }, |
115 'sources': [ | 117 'sources': [ |
116 'tools/bwe_rtp_play.cc', | 118 'tools/bwe_rtp_play.cc', |
117 ], # source | 119 ], # source |
118 }, | 120 }, |
119 ], | 121 ], |
120 }], # include_tests==1 | 122 }], # include_tests==1 |
121 ], | 123 ], |
122 } | 124 } |
OLD | NEW |