OLD | NEW |
1 # Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2014 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 import("../../build/webrtc.gni") | 9 import("../../build/webrtc.gni") |
10 import("audio_coding.gni") | 10 import("audio_coding.gni") |
(...skipping 1129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1140 rtc_source_set("neteq_unittest_tools") { | 1140 rtc_source_set("neteq_unittest_tools") { |
1141 testonly = true | 1141 testonly = true |
1142 sources = [ | 1142 sources = [ |
1143 "neteq/tools/audio_checksum.h", | 1143 "neteq/tools/audio_checksum.h", |
1144 "neteq/tools/audio_loop.cc", | 1144 "neteq/tools/audio_loop.cc", |
1145 "neteq/tools/audio_loop.h", | 1145 "neteq/tools/audio_loop.h", |
1146 "neteq/tools/audio_sink.cc", | 1146 "neteq/tools/audio_sink.cc", |
1147 "neteq/tools/audio_sink.h", | 1147 "neteq/tools/audio_sink.h", |
1148 "neteq/tools/constant_pcm_packet_source.cc", | 1148 "neteq/tools/constant_pcm_packet_source.cc", |
1149 "neteq/tools/constant_pcm_packet_source.h", | 1149 "neteq/tools/constant_pcm_packet_source.h", |
| 1150 "neteq/tools/encode_neteq_input.cc", |
| 1151 "neteq/tools/encode_neteq_input.h", |
1150 "neteq/tools/fake_decode_from_file.cc", | 1152 "neteq/tools/fake_decode_from_file.cc", |
1151 "neteq/tools/fake_decode_from_file.h", | 1153 "neteq/tools/fake_decode_from_file.h", |
1152 "neteq/tools/input_audio_file.cc", | 1154 "neteq/tools/input_audio_file.cc", |
1153 "neteq/tools/input_audio_file.h", | 1155 "neteq/tools/input_audio_file.h", |
1154 "neteq/tools/neteq_input.h", | 1156 "neteq/tools/neteq_input.h", |
1155 "neteq/tools/neteq_packet_source_input.cc", | 1157 "neteq/tools/neteq_packet_source_input.cc", |
1156 "neteq/tools/neteq_packet_source_input.h", | 1158 "neteq/tools/neteq_packet_source_input.h", |
1157 "neteq/tools/neteq_replacement_input.cc", | 1159 "neteq/tools/neteq_replacement_input.cc", |
1158 "neteq/tools/neteq_replacement_input.h", | 1160 "neteq/tools/neteq_replacement_input.h", |
1159 "neteq/tools/neteq_test.cc", | 1161 "neteq/tools/neteq_test.cc", |
(...skipping 437 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1597 "//testing/gtest", | 1599 "//testing/gtest", |
1598 ] | 1600 ] |
1599 | 1601 |
1600 if (is_clang) { | 1602 if (is_clang) { |
1601 # Suppress warnings from Chrome's Clang plugins. | 1603 # Suppress warnings from Chrome's Clang plugins. |
1602 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. | 1604 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. |
1603 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 1605 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
1604 } | 1606 } |
1605 } | 1607 } |
1606 } | 1608 } |
OLD | NEW |