Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(670)

Side by Side Diff: webrtc/modules/audio_coding/BUILD.gn

Issue 2221193004: Migrated GN target :neteq_ilbc_quality_test (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Rebase on top of master. Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | webrtc/modules/audio_coding/neteq/neteq.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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",
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
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",
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 ]
1396
1397 if (is_clang) {
1398 # Suppress warnings from the Chromium Clang plugins
1399 # (bugs.webrtc.org/163).
1400 configs -= [ "//build/config/clang:find_bad_constructs" ]
1401 }
1402 } 1398 }
1403 1399
1404 executable("neteq_speed_test") { 1400 executable("neteq_speed_test") {
1405 testonly = true 1401 testonly = true
1406 1402
1407 sources = [ 1403 sources = [
1408 "neteq/test/neteq_speed_test.cc", 1404 "neteq/test/neteq_speed_test.cc",
1409 ] 1405 ]
1410 1406
1411 deps = [ 1407 deps = [
1412 ":neteq", 1408 ":neteq",
1413 ":neteq_test_support", 1409 ":neteq_test_support",
1414 "../../system_wrappers:system_wrappers_default", 1410 "../../system_wrappers:system_wrappers_default",
1415 "../../test:test_support", 1411 "../../test:test_support",
1416 "//third_party/gflags", 1412 "//third_party/gflags",
1417 ] 1413 ]
1418 } 1414 }
1419 1415
1420 executable("audio_classifier_test") { 1416 executable("audio_classifier_test") {
1421 testonly = true 1417 testonly = true
1422 sources = [ 1418 sources = [
1423 "neteq/test/audio_classifier_test.cc", 1419 "neteq/test/audio_classifier_test.cc",
1424 ] 1420 ]
1425 deps = [ 1421 deps = [
1426 ":neteq", 1422 ":neteq",
1427 ":webrtc_opus", 1423 ":webrtc_opus",
1428 "../../system_wrappers:system_wrappers_default", 1424 "../../system_wrappers:system_wrappers_default",
1429 ] 1425 ]
1430 } 1426 }
1427
1428 executable("neteq_ilbc_quality_test") {
1429 testonly = true
1430
1431 sources = [
1432 "neteq/test/neteq_ilbc_quality_test.cc",
1433 ]
1434
1435 deps = [
1436 ":ilbc",
1437 ":neteq",
1438 ":neteq_test_support",
1439 ":neteq_unittest_tools",
1440 "../../system_wrappers:system_wrappers_default",
1441 "../../test:test_support_main",
1442 "//testing/gtest",
1443 "//third_party/gflags",
1444 ]
1445 }
1431 } 1446 }
OLDNEW
« no previous file with comments | « no previous file | webrtc/modules/audio_coding/neteq/neteq.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698