| 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 24 matching lines...) Expand all Loading... |
| 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 'neteq', | 42 'neteq', |
| 43 ], | 43 ], |
| 44 'include_dirs': [ | 44 'include_dirs': [ |
| 45 '../interface', | 45 'interface', |
| 46 '../../../interface', | 46 '../../interface', |
| 47 '<(webrtc_root)', | 47 '<(webrtc_root)', |
| 48 ], | 48 ], |
| 49 'direct_dependent_settings': { | 49 'direct_dependent_settings': { |
| 50 'include_dirs': [ | 50 'include_dirs': [ |
| 51 '../interface', | 51 'interface', |
| 52 '../../../interface', | 52 '../../interface', |
| 53 '<(webrtc_root)', | 53 '<(webrtc_root)', |
| 54 ], | 54 ], |
| 55 }, | 55 }, |
| 56 'sources': [ | 56 'sources': [ |
| 57 '../interface/audio_coding_module.h', | 57 'acm2/acm_codec_database.cc', |
| 58 '../interface/audio_coding_module_typedefs.h', | 58 'acm2/acm_codec_database.h', |
| 59 'acm_codec_database.cc', | 59 'acm2/acm_common_defs.h', |
| 60 'acm_codec_database.h', | 60 'acm2/acm_receiver.cc', |
| 61 'acm_common_defs.h', | 61 'acm2/acm_receiver.h', |
| 62 'acm_receiver.cc', | 62 'acm2/acm_resampler.cc', |
| 63 'acm_receiver.h', | 63 'acm2/acm_resampler.h', |
| 64 'acm_resampler.cc', | 64 'acm2/audio_coding_module.cc', |
| 65 'acm_resampler.h', | 65 'acm2/audio_coding_module_impl.cc', |
| 66 'audio_coding_module.cc', | 66 'acm2/audio_coding_module_impl.h', |
| 67 'audio_coding_module_impl.cc', | 67 'acm2/call_statistics.cc', |
| 68 'audio_coding_module_impl.h', | 68 'acm2/call_statistics.h', |
| 69 'call_statistics.cc', | 69 'acm2/codec_manager.cc', |
| 70 'call_statistics.h', | 70 'acm2/codec_manager.h', |
| 71 'codec_manager.cc', | 71 'acm2/codec_owner.cc', |
| 72 'codec_manager.h', | 72 'acm2/codec_owner.h', |
| 73 'codec_owner.cc', | 73 'acm2/initial_delay_manager.cc', |
| 74 'codec_owner.h', | 74 'acm2/initial_delay_manager.h', |
| 75 'initial_delay_manager.cc', | 75 'acm2/nack.cc', |
| 76 'initial_delay_manager.h', | 76 'acm2/nack.h', |
| 77 'nack.cc', | 77 'interface/audio_coding_module.h', |
| 78 'nack.h', | 78 'interface/audio_coding_module_typedefs.h', |
| 79 ], | 79 ], |
| 80 }, | 80 }, |
| 81 ], | 81 ], |
| 82 'conditions': [ | 82 'conditions': [ |
| 83 ['include_tests==1', { | 83 ['include_tests==1', { |
| 84 'targets': [ | 84 'targets': [ |
| 85 { | 85 { |
| 86 'target_name': 'acm_receive_test', | 86 'target_name': 'acm_receive_test', |
| 87 'type': 'static_library', | 87 'type': 'static_library', |
| 88 'defines': [ | 88 'defines': [ |
| 89 '<@(audio_coding_defines)', | 89 '<@(audio_coding_defines)', |
| 90 ], | 90 ], |
| 91 'dependencies': [ | 91 'dependencies': [ |
| 92 '<@(audio_coding_dependencies)', | 92 '<@(audio_coding_dependencies)', |
| 93 'audio_coding_module', | 93 'audio_coding_module', |
| 94 'neteq_unittest_tools', | 94 'neteq_unittest_tools', |
| 95 '<(DEPTH)/testing/gtest.gyp:gtest', | 95 '<(DEPTH)/testing/gtest.gyp:gtest', |
| 96 ], | 96 ], |
| 97 'sources': [ | 97 'sources': [ |
| 98 'acm_receive_test.cc', | 98 'acm2/acm_receive_test.cc', |
| 99 'acm_receive_test.h', | 99 'acm2/acm_receive_test.h', |
| 100 'acm_receive_test_oldapi.cc', | 100 'acm2/acm_receive_test_oldapi.cc', |
| 101 'acm_receive_test_oldapi.h', | 101 'acm2/acm_receive_test_oldapi.h', |
| 102 ], | 102 ], |
| 103 }, # acm_receive_test | 103 }, # acm_receive_test |
| 104 { | 104 { |
| 105 'target_name': 'acm_send_test', | 105 'target_name': 'acm_send_test', |
| 106 'type': 'static_library', | 106 'type': 'static_library', |
| 107 'defines': [ | 107 'defines': [ |
| 108 '<@(audio_coding_defines)', | 108 '<@(audio_coding_defines)', |
| 109 ], | 109 ], |
| 110 'dependencies': [ | 110 'dependencies': [ |
| 111 '<@(audio_coding_dependencies)', | 111 '<@(audio_coding_dependencies)', |
| 112 'audio_coding_module', | 112 'audio_coding_module', |
| 113 'neteq_unittest_tools', | 113 'neteq_unittest_tools', |
| 114 '<(DEPTH)/testing/gtest.gyp:gtest', | 114 '<(DEPTH)/testing/gtest.gyp:gtest', |
| 115 ], | 115 ], |
| 116 'sources': [ | 116 'sources': [ |
| 117 'acm_send_test.cc', | 117 'acm2/acm_send_test.cc', |
| 118 'acm_send_test.h', | 118 'acm2/acm_send_test.h', |
| 119 'acm_send_test_oldapi.cc', | 119 'acm2/acm_send_test_oldapi.cc', |
| 120 'acm_send_test_oldapi.h', | 120 'acm2/acm_send_test_oldapi.h', |
| 121 ], | 121 ], |
| 122 }, # acm_send_test | 122 }, # acm_send_test |
| 123 { | 123 { |
| 124 'target_name': 'delay_test', | 124 'target_name': 'delay_test', |
| 125 'type': 'executable', | 125 'type': 'executable', |
| 126 'dependencies': [ | 126 'dependencies': [ |
| 127 'audio_coding_module', | 127 'audio_coding_module', |
| 128 '<(DEPTH)/testing/gtest.gyp:gtest', | 128 '<(DEPTH)/testing/gtest.gyp:gtest', |
| 129 '<(webrtc_root)/common.gyp:webrtc_common', | 129 '<(webrtc_root)/common.gyp:webrtc_common', |
| 130 '<(webrtc_root)/test/test.gyp:test_support', | 130 '<(webrtc_root)/test/test.gyp:test_support', |
| 131 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers'
, | 131 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers'
, |
| 132 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers_
default', | 132 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers_
default', |
| 133 '<(DEPTH)/third_party/gflags/gflags.gyp:gflags', | 133 '<(DEPTH)/third_party/gflags/gflags.gyp:gflags', |
| 134 ], | 134 ], |
| 135 'sources': [ | 135 'sources': [ |
| 136 '../test/delay_test.cc', | 136 'test/delay_test.cc', |
| 137 '../test/Channel.cc', | 137 'test/Channel.cc', |
| 138 '../test/PCMFile.cc', | 138 'test/PCMFile.cc', |
| 139 '../test/utility.cc', | 139 'test/utility.cc', |
| 140 ], | 140 ], |
| 141 }, # delay_test | 141 }, # delay_test |
| 142 { | 142 { |
| 143 'target_name': 'insert_packet_with_timing', | 143 'target_name': 'insert_packet_with_timing', |
| 144 'type': 'executable', | 144 'type': 'executable', |
| 145 'dependencies': [ | 145 'dependencies': [ |
| 146 'audio_coding_module', | 146 'audio_coding_module', |
| 147 '<(DEPTH)/testing/gtest.gyp:gtest', | 147 '<(DEPTH)/testing/gtest.gyp:gtest', |
| 148 '<(webrtc_root)/common.gyp:webrtc_common', | 148 '<(webrtc_root)/common.gyp:webrtc_common', |
| 149 '<(webrtc_root)/test/test.gyp:test_support', | 149 '<(webrtc_root)/test/test.gyp:test_support', |
| 150 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers'
, | 150 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers'
, |
| 151 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers_
default', | 151 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers_
default', |
| 152 '<(DEPTH)/third_party/gflags/gflags.gyp:gflags', | 152 '<(DEPTH)/third_party/gflags/gflags.gyp:gflags', |
| 153 ], | 153 ], |
| 154 'sources': [ | 154 'sources': [ |
| 155 '../test/insert_packet_with_timing.cc', | 155 'test/insert_packet_with_timing.cc', |
| 156 '../test/Channel.cc', | 156 'test/Channel.cc', |
| 157 '../test/PCMFile.cc', | 157 'test/PCMFile.cc', |
| 158 ], | 158 ], |
| 159 }, # delay_test | 159 }, # delay_test |
| 160 ], | 160 ], |
| 161 }], | 161 }], |
| 162 ], | 162 ], |
| 163 } | 163 } |
| OLD | NEW |