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 }, | |
109 ], | 81 ], |
110 'conditions': [ | 82 'conditions': [ |
111 ['include_tests==1', { | 83 ['include_tests==1', { |
112 'targets': [ | 84 'targets': [ |
113 { | 85 { |
114 'target_name': 'acm_receive_test', | 86 'target_name': 'acm_receive_test', |
115 'type': 'static_library', | 87 'type': 'static_library', |
116 'defines': [ | 88 'defines': [ |
117 '<@(audio_coding_defines)', | 89 '<@(audio_coding_defines)', |
118 ], | 90 ], |
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
182 'sources': [ | 154 'sources': [ |
183 '../test/insert_packet_with_timing.cc', | 155 '../test/insert_packet_with_timing.cc', |
184 '../test/Channel.cc', | 156 '../test/Channel.cc', |
185 '../test/PCMFile.cc', | 157 '../test/PCMFile.cc', |
186 ], | 158 ], |
187 }, # delay_test | 159 }, # delay_test |
188 ], | 160 ], |
189 }], | 161 }], |
190 ], | 162 ], |
191 } | 163 } |
OLD | NEW |