| 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 10 matching lines...) Expand all Loading... |
| 21 'dependencies': [ | 21 'dependencies': [ |
| 22 '<(webrtc_root)/common.gyp:webrtc_common', | 22 '<(webrtc_root)/common.gyp:webrtc_common', |
| 23 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers', | 23 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers', |
| 24 ], | 24 ], |
| 25 'sources': [ | 25 'sources': [ |
| 26 'include/bwe_defines.h', | 26 'include/bwe_defines.h', |
| 27 'include/remote_bitrate_estimator.h', | 27 'include/remote_bitrate_estimator.h', |
| 28 'include/send_time_history.h', | 28 'include/send_time_history.h', |
| 29 'aimd_rate_control.cc', | 29 'aimd_rate_control.cc', |
| 30 'aimd_rate_control.h', | 30 'aimd_rate_control.h', |
| 31 'bwe_defines.cc', |
| 31 'inter_arrival.cc', | 32 'inter_arrival.cc', |
| 32 'inter_arrival.h', | 33 'inter_arrival.h', |
| 33 'overuse_detector.cc', | 34 'overuse_detector.cc', |
| 34 'overuse_detector.h', | 35 'overuse_detector.h', |
| 35 'overuse_estimator.cc', | 36 'overuse_estimator.cc', |
| 36 'overuse_estimator.h', | 37 'overuse_estimator.h', |
| 37 'remote_bitrate_estimator_abs_send_time.cc', | 38 'remote_bitrate_estimator_abs_send_time.cc', |
| 38 'remote_bitrate_estimator_abs_send_time.h', | 39 'remote_bitrate_estimator_abs_send_time.h', |
| 39 'remote_bitrate_estimator_single_stream.cc', | 40 'remote_bitrate_estimator_single_stream.cc', |
| 40 'remote_bitrate_estimator_single_stream.h', | 41 'remote_bitrate_estimator_single_stream.h', |
| (...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 162 ], | 163 ], |
| 163 }, | 164 }, |
| 164 'sources': [ | 165 'sources': [ |
| 165 'tools/bwe_rtp_play.cc', | 166 'tools/bwe_rtp_play.cc', |
| 166 ], # source | 167 ], # source |
| 167 }, | 168 }, |
| 168 ], | 169 ], |
| 169 }], # include_tests==1 | 170 }], # include_tests==1 |
| 170 ], | 171 ], |
| 171 } | 172 } |
| OLD | NEW |