OLD | NEW |
1 # Copyright (c) 2011 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2011 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 'includes': [ | 10 'includes': [ |
(...skipping 18 matching lines...) Expand all Loading... |
29 '<(webrtc_root)/modules/modules.gyp:rtp_rtcp', | 29 '<(webrtc_root)/modules/modules.gyp:rtp_rtcp', |
30 '<(webrtc_root)/modules/modules.gyp:webrtc_utility', | 30 '<(webrtc_root)/modules/modules.gyp:webrtc_utility', |
31 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers', | 31 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers', |
32 '<(webrtc_root)/webrtc.gyp:rtc_event_log', | 32 '<(webrtc_root)/webrtc.gyp:rtc_event_log', |
33 'level_indicator', | 33 'level_indicator', |
34 ], | 34 ], |
35 'export_dependent_settings': [ | 35 'export_dependent_settings': [ |
36 '<(webrtc_root)/modules/modules.gyp:audio_coding_module', | 36 '<(webrtc_root)/modules/modules.gyp:audio_coding_module', |
37 ], | 37 ], |
38 'sources': [ | 38 'sources': [ |
| 39 'coder.cc', |
| 40 'coder.h', |
| 41 'file_player.cc', |
| 42 'file_player.h', |
| 43 'file_recorder.cc', |
| 44 'file_recorder.h', |
39 'include/voe_audio_processing.h', | 45 'include/voe_audio_processing.h', |
40 'include/voe_base.h', | 46 'include/voe_base.h', |
41 'include/voe_codec.h', | 47 'include/voe_codec.h', |
42 'include/voe_errors.h', | 48 'include/voe_errors.h', |
43 'include/voe_external_media.h', | 49 'include/voe_external_media.h', |
44 'include/voe_file.h', | 50 'include/voe_file.h', |
45 'include/voe_hardware.h', | 51 'include/voe_hardware.h', |
46 'include/voe_neteq_stats.h', | 52 'include/voe_neteq_stats.h', |
47 'include/voe_network.h', | 53 'include/voe_network.h', |
48 'include/voe_rtp_rtcp.h', | 54 'include/voe_rtp_rtcp.h', |
(...skipping 268 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
317 'sources': [ | 323 'sources': [ |
318 'voe_auto_test.isolate', | 324 'voe_auto_test.isolate', |
319 ], | 325 ], |
320 }, | 326 }, |
321 ], | 327 ], |
322 }], | 328 }], |
323 ], # conditions | 329 ], # conditions |
324 }], # include_tests==1 | 330 }], # include_tests==1 |
325 ], # conditions | 331 ], # conditions |
326 } | 332 } |
OLD | NEW |