OLD | NEW |
1 # Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2014 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 import("../../build/webrtc.gni") | 9 import("../../build/webrtc.gni") |
10 | 10 |
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
59 "test/bwe.h", | 59 "test/bwe.h", |
60 "test/bwe_test.cc", | 60 "test/bwe_test.cc", |
61 "test/bwe_test.h", | 61 "test/bwe_test.h", |
62 "test/bwe_test_baselinefile.cc", | 62 "test/bwe_test_baselinefile.cc", |
63 "test/bwe_test_baselinefile.h", | 63 "test/bwe_test_baselinefile.h", |
64 "test/bwe_test_fileutils.cc", | 64 "test/bwe_test_fileutils.cc", |
65 "test/bwe_test_fileutils.h", | 65 "test/bwe_test_fileutils.h", |
66 "test/bwe_test_framework.cc", | 66 "test/bwe_test_framework.cc", |
67 "test/bwe_test_framework.h", | 67 "test/bwe_test_framework.h", |
68 "test/bwe_test_logging.h", | 68 "test/bwe_test_logging.h", |
| 69 "test/estimators/abs_send_time.cc", |
| 70 "test/estimators/abs_send_time.h", |
69 "test/estimators/nada.cc", | 71 "test/estimators/nada.cc", |
70 "test/estimators/nada.h", | 72 "test/estimators/nada.h", |
71 "test/estimators/remb.cc", | 73 "test/estimators/remb.cc", |
72 "test/estimators/remb.h", | 74 "test/estimators/remb.h", |
73 "test/estimators/send_side.cc", | 75 "test/estimators/send_side.cc", |
74 "test/estimators/send_side.h", | 76 "test/estimators/send_side.h", |
75 "test/estimators/tcp.cc", | 77 "test/estimators/tcp.cc", |
76 "test/estimators/tcp.h", | 78 "test/estimators/tcp.h", |
77 "test/metric_recorder.cc", | 79 "test/metric_recorder.cc", |
78 "test/metric_recorder.h", | 80 "test/metric_recorder.h", |
(...skipping 23 matching lines...) Expand all Loading... |
102 } | 104 } |
103 | 105 |
104 deps = [ | 106 deps = [ |
105 "../../test:test_support", | 107 "../../test:test_support", |
106 "../pacing", | 108 "../pacing", |
107 "//testing/gmock", | 109 "//testing/gmock", |
108 "//testing/gtest", | 110 "//testing/gtest", |
109 ] | 111 ] |
110 } | 112 } |
111 } | 113 } |
OLD | NEW |