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': [ |
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 'aimd_rate_control.cc', | 24 'aimd_rate_control.cc', |
25 'aimd_rate_control.h', | 25 'aimd_rate_control.h', |
26 'inter_arrival.cc', | 26 'inter_arrival.cc', |
27 'inter_arrival.h', | 27 'inter_arrival.h', |
28 'mimd_rate_control.cc', | |
29 'mimd_rate_control.h', | |
30 'overuse_detector.cc', | 28 'overuse_detector.cc', |
31 'overuse_detector.h', | 29 'overuse_detector.h', |
32 'overuse_estimator.cc', | 30 'overuse_estimator.cc', |
33 'overuse_estimator.h', | 31 'overuse_estimator.h', |
34 'rate_statistics.cc', | 32 'rate_statistics.cc', |
35 'rate_statistics.h', | 33 'rate_statistics.h', |
36 'remote_bitrate_estimator_abs_send_time.cc', | 34 'remote_bitrate_estimator_abs_send_time.cc', |
| 35 'remote_bitrate_estimator_abs_send_time.h', |
37 'remote_bitrate_estimator_single_stream.cc', | 36 'remote_bitrate_estimator_single_stream.cc', |
38 'remote_rate_control.cc', | 37 'remote_bitrate_estimator_single_stream.h', |
39 'remote_rate_control.h', | |
40 'test/bwe_test_logging.cc', | 38 'test/bwe_test_logging.cc', |
41 'test/bwe_test_logging.h', | 39 'test/bwe_test_logging.h', |
42 ], # source | 40 ], # source |
43 'conditions': [ | 41 'conditions': [ |
44 ['enable_bwe_test_logging==1', { | 42 ['enable_bwe_test_logging==1', { |
45 'defines': [ 'BWE_TEST_LOGGING_COMPILE_TIME_ENABLE=1' ], | 43 'defines': [ 'BWE_TEST_LOGGING_COMPILE_TIME_ENABLE=1' ], |
46 }, { | 44 }, { |
47 'defines': [ 'BWE_TEST_LOGGING_COMPILE_TIME_ENABLE=0' ], | 45 'defines': [ 'BWE_TEST_LOGGING_COMPILE_TIME_ENABLE=0' ], |
48 'sources!': [ | 46 'sources!': [ |
49 'remote_bitrate_estimator/test/bwe_test_logging.cc' | 47 'remote_bitrate_estimator/test/bwe_test_logging.cc' |
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
154 ], | 152 ], |
155 }, | 153 }, |
156 'sources': [ | 154 'sources': [ |
157 'tools/bwe_rtp_play.cc', | 155 'tools/bwe_rtp_play.cc', |
158 ], # source | 156 ], # source |
159 }, | 157 }, |
160 ], | 158 ], |
161 }], # include_tests==1 | 159 }], # include_tests==1 |
162 ], | 160 ], |
163 } | 161 } |
OLD | NEW |