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 1149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1160 config("neteq_unittest_tools_config") { | 1160 config("neteq_unittest_tools_config") { |
1161 include_dirs = [ "tools" ] | 1161 include_dirs = [ "tools" ] |
1162 } | 1162 } |
1163 | 1163 |
1164 source_set("neteq_unittest_tools") { | 1164 source_set("neteq_unittest_tools") { |
1165 testonly = true | 1165 testonly = true |
1166 sources = [ | 1166 sources = [ |
1167 "neteq/tools/audio_checksum.h", | 1167 "neteq/tools/audio_checksum.h", |
1168 "neteq/tools/audio_loop.cc", | 1168 "neteq/tools/audio_loop.cc", |
1169 "neteq/tools/audio_loop.h", | 1169 "neteq/tools/audio_loop.h", |
1170 "neteq/tools/audio_sink.cc", | |
aleloi
2016/08/10 10:14:01
The chromium-style error was that a virtual method
| |
1170 "neteq/tools/audio_sink.h", | 1171 "neteq/tools/audio_sink.h", |
1171 "neteq/tools/constant_pcm_packet_source.cc", | 1172 "neteq/tools/constant_pcm_packet_source.cc", |
1172 "neteq/tools/constant_pcm_packet_source.h", | 1173 "neteq/tools/constant_pcm_packet_source.h", |
1173 "neteq/tools/fake_decode_from_file.cc", | 1174 "neteq/tools/fake_decode_from_file.cc", |
1174 "neteq/tools/fake_decode_from_file.h", | 1175 "neteq/tools/fake_decode_from_file.h", |
1175 "neteq/tools/input_audio_file.cc", | 1176 "neteq/tools/input_audio_file.cc", |
1176 "neteq/tools/input_audio_file.h", | 1177 "neteq/tools/input_audio_file.h", |
1177 "neteq/tools/neteq_input.h", | 1178 "neteq/tools/neteq_input.h", |
1178 "neteq/tools/neteq_packet_source_input.cc", | 1179 "neteq/tools/neteq_packet_source_input.cc", |
1179 "neteq/tools/neteq_packet_source_input.h", | 1180 "neteq/tools/neteq_packet_source_input.h", |
(...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1381 executable("neteq_opus_quality_test") { | 1382 executable("neteq_opus_quality_test") { |
1382 testonly = true | 1383 testonly = true |
1383 | 1384 |
1384 sources = [ | 1385 sources = [ |
1385 "neteq/test/neteq_opus_quality_test.cc", | 1386 "neteq/test/neteq_opus_quality_test.cc", |
1386 ] | 1387 ] |
1387 | 1388 |
1388 deps = [ | 1389 deps = [ |
1389 ":neteq", | 1390 ":neteq", |
1390 ":neteq_test_support", | 1391 ":neteq_test_support", |
1392 ":neteq_unittest_tools", | |
aleloi
2016/08/10 10:14:01
Since we import a header from unittest_tools, we s
| |
1391 ":webrtc_opus", | 1393 ":webrtc_opus", |
1392 "../../test:test_support_main", | 1394 "../../test:test_support_main", |
1393 "//testing/gtest", | 1395 "//testing/gtest", |
1394 "//third_party/gflags", | 1396 "//third_party/gflags", |
1395 ] | 1397 ] |
1398 } | |
1396 | 1399 |
1397 if (is_clang) { | 1400 executable("neteq_ilbc_quality_test") { |
1398 # Suppress warnings from the Chromium Clang plugins | 1401 testonly = true |
1399 # (bugs.webrtc.org/163). | 1402 |
1400 configs -= [ "//build/config/clang:find_bad_constructs" ] | 1403 sources = [ |
1401 } | 1404 "neteq/test/neteq_ilbc_quality_test.cc", |
aleloi
2016/08/10 10:14:01
This is from the 'opus' target. I find the diff co
| |
1405 ] | |
1406 | |
1407 deps = [ | |
1408 ":ilbc", | |
1409 ":neteq", | |
1410 ":neteq_test_support", | |
1411 ":neteq_unittest_tools", | |
1412 "../../system_wrappers:system_wrappers_default", | |
1413 "../../test:test_support_main", | |
1414 "//testing/gtest", | |
1415 "//third_party/gflags", | |
1416 ] | |
1402 } | 1417 } |
1403 } | 1418 } |
OLD | NEW |