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 21 matching lines...) Expand all Loading... |
32 'targets': [ | 32 'targets': [ |
33 { | 33 { |
34 'target_name': 'audio_coding_module', | 34 'target_name': 'audio_coding_module', |
35 'type': 'static_library', | 35 'type': 'static_library', |
36 'defines': [ | 36 'defines': [ |
37 '<@(audio_coding_defines)', | 37 '<@(audio_coding_defines)', |
38 ], | 38 ], |
39 'dependencies': [ | 39 'dependencies': [ |
40 '<@(audio_coding_dependencies)', | 40 '<@(audio_coding_dependencies)', |
41 '<(webrtc_root)/common.gyp:webrtc_common', | 41 '<(webrtc_root)/common.gyp:webrtc_common', |
| 42 '<(webrtc_root)/webrtc.gyp:rtc_event_log', |
42 'neteq', | 43 'neteq', |
43 ], | 44 ], |
44 'include_dirs': [ | 45 'include_dirs': [ |
45 'interface', | 46 'interface', |
46 '../../interface', | 47 '../../interface', |
47 '<(webrtc_root)', | 48 '<(webrtc_root)', |
48 ], | 49 ], |
49 'direct_dependent_settings': { | 50 'direct_dependent_settings': { |
50 'include_dirs': [ | 51 'include_dirs': [ |
51 'interface', | 52 'interface', |
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
154 'sources': [ | 155 'sources': [ |
155 'test/insert_packet_with_timing.cc', | 156 'test/insert_packet_with_timing.cc', |
156 'test/Channel.cc', | 157 'test/Channel.cc', |
157 'test/PCMFile.cc', | 158 'test/PCMFile.cc', |
158 ], | 159 ], |
159 }, # delay_test | 160 }, # delay_test |
160 ], | 161 ], |
161 }], | 162 }], |
162 ], | 163 ], |
163 } | 164 } |
OLD | NEW |