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 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
71 'codec_manager.cc', | 71 'codec_manager.cc', |
72 'codec_manager.h', | 72 'codec_manager.h', |
73 'codec_owner.cc', | 73 'codec_owner.cc', |
74 'codec_owner.h', | 74 'codec_owner.h', |
75 'initial_delay_manager.cc', | 75 'initial_delay_manager.cc', |
76 'initial_delay_manager.h', | 76 'initial_delay_manager.h', |
77 'nack.cc', | 77 'nack.cc', |
78 'nack.h', | 78 'nack.h', |
79 ], | 79 ], |
80 }, | 80 }, |
| 81 { |
| 82 'target_name': 'acm_dump_proto', |
| 83 'type': 'static_library', |
| 84 'sources': ['dump.proto',], |
| 85 'variables': { |
| 86 'proto_in_dir': '.', |
| 87 # Workaround to protect against gyp's pathname relativization when |
| 88 # this file is included by modules.gyp. |
| 89 'proto_out_protected': 'webrtc/audio_coding', |
| 90 'proto_out_dir': '<(proto_out_protected)', |
| 91 }, |
| 92 'includes': ['../../../../build/protoc.gypi',], |
| 93 }, |
| 94 { |
| 95 'target_name': 'acm_dump', |
| 96 'type': 'static_library', |
| 97 'conditions': [ |
| 98 ['enable_protobuf==1', { |
| 99 'defines': ['RTC_AUDIOCODING_DEBUG_DUMP'], |
| 100 } |
| 101 ], |
| 102 ], |
| 103 'sources': [ |
| 104 'acm_dump.h', |
| 105 'acm_dump.cc' |
| 106 ], |
| 107 'dependencies': ['acm_dump_proto'], |
| 108 }, |
81 ], | 109 ], |
82 'conditions': [ | 110 'conditions': [ |
83 ['include_tests==1', { | 111 ['include_tests==1', { |
84 'targets': [ | 112 'targets': [ |
85 { | 113 { |
86 'target_name': 'acm_receive_test', | 114 'target_name': 'acm_receive_test', |
87 'type': 'static_library', | 115 'type': 'static_library', |
88 'defines': [ | 116 'defines': [ |
89 '<@(audio_coding_defines)', | 117 '<@(audio_coding_defines)', |
90 ], | 118 ], |
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
154 'sources': [ | 182 'sources': [ |
155 '../test/insert_packet_with_timing.cc', | 183 '../test/insert_packet_with_timing.cc', |
156 '../test/Channel.cc', | 184 '../test/Channel.cc', |
157 '../test/PCMFile.cc', | 185 '../test/PCMFile.cc', |
158 ], | 186 ], |
159 }, # delay_test | 187 }, # delay_test |
160 ], | 188 ], |
161 }], | 189 }], |
162 ], | 190 ], |
163 } | 191 } |
OLD | NEW |