OLD | NEW |
1 # Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2012 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 'variables': { | 10 'variables': { |
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
98 'merge.h', | 98 'merge.h', |
99 'nack.h', | 99 'nack.h', |
100 'nack.cc', | 100 'nack.cc', |
101 'neteq_impl.cc', | 101 'neteq_impl.cc', |
102 'neteq_impl.h', | 102 'neteq_impl.h', |
103 'neteq.cc', | 103 'neteq.cc', |
104 'statistics_calculator.cc', | 104 'statistics_calculator.cc', |
105 'statistics_calculator.h', | 105 'statistics_calculator.h', |
106 'normal.cc', | 106 'normal.cc', |
107 'normal.h', | 107 'normal.h', |
| 108 'packet.cc', |
| 109 'packet.h', |
108 'packet_buffer.cc', | 110 'packet_buffer.cc', |
109 'packet_buffer.h', | 111 'packet_buffer.h', |
110 'payload_splitter.cc', | 112 'payload_splitter.cc', |
111 'payload_splitter.h', | 113 'payload_splitter.h', |
112 'post_decode_vad.cc', | 114 'post_decode_vad.cc', |
113 'post_decode_vad.h', | 115 'post_decode_vad.h', |
114 'preemptive_expand.cc', | 116 'preemptive_expand.cc', |
115 'preemptive_expand.h', | 117 'preemptive_expand.h', |
116 'random_vector.cc', | 118 'random_vector.cc', |
117 'random_vector.h', | 119 'random_vector.h', |
118 'rtcp.cc', | 120 'rtcp.cc', |
119 'rtcp.h', | 121 'rtcp.h', |
120 'sync_buffer.cc', | 122 'sync_buffer.cc', |
121 'sync_buffer.h', | 123 'sync_buffer.h', |
| 124 'tick_timer.cc', |
| 125 'tick_timer.h', |
122 'timestamp_scaler.cc', | 126 'timestamp_scaler.cc', |
123 'timestamp_scaler.h', | 127 'timestamp_scaler.h', |
124 'time_stretch.cc', | 128 'time_stretch.cc', |
125 'time_stretch.h', | 129 'time_stretch.h', |
126 ], | 130 ], |
127 }, | 131 }, |
128 ], # targets | 132 ], # targets |
129 'conditions': [ | 133 'conditions': [ |
130 ['include_tests==1', { | 134 ['include_tests==1', { |
131 'includes': ['neteq_tests.gypi',], | 135 'includes': ['neteq_tests.gypi',], |
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
202 'tools/rtp_file_source.cc', | 206 'tools/rtp_file_source.cc', |
203 'tools/rtp_file_source.h', | 207 'tools/rtp_file_source.h', |
204 'tools/rtp_generator.cc', | 208 'tools/rtp_generator.cc', |
205 'tools/rtp_generator.h', | 209 'tools/rtp_generator.h', |
206 ], | 210 ], |
207 }, # neteq_unittest_tools | 211 }, # neteq_unittest_tools |
208 ], # targets | 212 ], # targets |
209 }], # include_tests | 213 }], # include_tests |
210 ], # conditions | 214 ], # conditions |
211 } | 215 } |
OLD | NEW |