| 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/config/arm.gni") | 9 import("//build/config/arm.gni") |
| 10 import("//third_party/protobuf/proto_library.gni") | 10 import("//third_party/protobuf/proto_library.gni") |
| (...skipping 311 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 322 if (rtc_include_tests) { | 322 if (rtc_include_tests) { |
| 323 executable("audioproc") { | 323 executable("audioproc") { |
| 324 testonly = true | 324 testonly = true |
| 325 sources = [ | 325 sources = [ |
| 326 "test/process_test.cc", | 326 "test/process_test.cc", |
| 327 ] | 327 ] |
| 328 | 328 |
| 329 configs += [ "../..:common_config" ] | 329 configs += [ "../..:common_config" ] |
| 330 public_configs = [ "../..:common_inherited_config" ] | 330 public_configs = [ "../..:common_inherited_config" ] |
| 331 | 331 |
| 332 if (is_clang) { | |
| 333 # Suppress warnings from Chrome's Clang plugins. | |
| 334 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. | |
| 335 configs -= [ "//build/config/clang:find_bad_constructs" ] | |
| 336 } | |
| 337 | |
| 338 deps = [ | 332 deps = [ |
| 339 ":audio_processing", | 333 ":audio_processing", |
| 340 ":audioproc_debug_proto", | 334 ":audioproc_debug_proto", |
| 341 ":audioproc_protobuf_utils", | 335 ":audioproc_protobuf_utils", |
| 342 ":audioproc_test_utils", | 336 ":audioproc_test_utils", |
| 343 "../../system_wrappers", | 337 "../../system_wrappers", |
| 344 "../../system_wrappers:system_wrappers_default", | 338 "../../system_wrappers:system_wrappers_default", |
| 345 "../../test:test_support", | 339 "../../test:test_support", |
| 346 "//build/config/sanitizers:deps", | 340 "//build/config/sanitizers:deps", |
| 347 "//testing/gtest", | 341 "//testing/gtest", |
| 348 "//third_party/gflags:gflags", | 342 "//third_party/gflags:gflags", |
| 349 ] | 343 ] |
| 350 } # audioproc | 344 } # audioproc |
| 351 | 345 |
| 352 executable("unpack_aecdump") { | 346 executable("unpack_aecdump") { |
| 353 testonly = true | 347 testonly = true |
| 354 sources = [ | 348 sources = [ |
| 355 "test/unpack.cc", | 349 "test/unpack.cc", |
| 356 ] | 350 ] |
| 357 | 351 |
| 358 configs += [ "../..:common_config" ] | 352 configs += [ "../..:common_config" ] |
| 359 public_configs = [ "../..:common_inherited_config" ] | 353 public_configs = [ "../..:common_inherited_config" ] |
| 360 | 354 |
| 361 if (is_clang) { | |
| 362 # Suppress warnings from Chrome's Clang plugins. | |
| 363 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. | |
| 364 configs -= [ "//build/config/clang:find_bad_constructs" ] | |
| 365 } | |
| 366 | |
| 367 deps = [ | 355 deps = [ |
| 368 ":audio_processing", | 356 ":audio_processing", |
| 369 ":audioproc_debug_proto", | 357 ":audioproc_debug_proto", |
| 370 ":audioproc_protobuf_utils", | 358 ":audioproc_protobuf_utils", |
| 371 ":audioproc_test_utils", | 359 ":audioproc_test_utils", |
| 372 "../../common_audio", | 360 "../../common_audio", |
| 373 "../../system_wrappers:system_wrappers_default", | 361 "../../system_wrappers:system_wrappers_default", |
| 374 "//build/config/sanitizers:deps", | 362 "//build/config/sanitizers:deps", |
| 375 "//third_party/gflags:gflags", | 363 "//third_party/gflags:gflags", |
| 376 ] | 364 ] |
| 377 } # unpack_aecdump | 365 } # unpack_aecdump |
| 378 | 366 |
| 379 executable("audioproc_f") { | 367 executable("audioproc_f") { |
| 380 testonly = true | 368 testonly = true |
| 381 sources = [ | 369 sources = [ |
| 382 "test/aec_dump_based_simulator.cc", | 370 "test/aec_dump_based_simulator.cc", |
| 383 "test/aec_dump_based_simulator.h", | 371 "test/aec_dump_based_simulator.h", |
| 384 "test/audio_processing_simulator.cc", | 372 "test/audio_processing_simulator.cc", |
| 385 "test/audio_processing_simulator.h", | 373 "test/audio_processing_simulator.h", |
| 386 "test/audioproc_float.cc", | 374 "test/audioproc_float.cc", |
| 387 "test/wav_based_simulator.cc", | 375 "test/wav_based_simulator.cc", |
| 388 "test/wav_based_simulator.h", | 376 "test/wav_based_simulator.h", |
| 389 ] | 377 ] |
| 390 | 378 |
| 391 configs += [ "../..:common_config" ] | 379 configs += [ "../..:common_config" ] |
| 392 public_configs = [ "../..:common_inherited_config" ] | 380 public_configs = [ "../..:common_inherited_config" ] |
| 393 | 381 |
| 394 if (is_clang) { | |
| 395 # Suppress warnings from Chrome's Clang plugins. | |
| 396 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. | |
| 397 configs -= [ "//build/config/clang:find_bad_constructs" ] | |
| 398 } | |
| 399 | |
| 400 deps = [ | 382 deps = [ |
| 401 ":audio_processing", | 383 ":audio_processing", |
| 402 ":audioproc_debug_proto", | 384 ":audioproc_debug_proto", |
| 403 ":audioproc_protobuf_utils", | 385 ":audioproc_protobuf_utils", |
| 404 ":audioproc_test_utils", | 386 ":audioproc_test_utils", |
| 405 "../../system_wrappers", | 387 "../../system_wrappers", |
| 406 "../../system_wrappers:system_wrappers_default", | 388 "../../system_wrappers:system_wrappers_default", |
| 407 "../../test:test_support", | 389 "../../test:test_support", |
| 408 "//build/config/sanitizers:deps", | 390 "//build/config/sanitizers:deps", |
| 409 "//testing/gtest", | 391 "//testing/gtest", |
| (...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 501 "test/protobuf_utils.cc", | 483 "test/protobuf_utils.cc", |
| 502 "test/protobuf_utils.h", | 484 "test/protobuf_utils.h", |
| 503 ] | 485 ] |
| 504 | 486 |
| 505 deps = [ | 487 deps = [ |
| 506 ":audioproc_debug_proto", | 488 ":audioproc_debug_proto", |
| 507 ] | 489 ] |
| 508 } | 490 } |
| 509 } | 491 } |
| 510 } | 492 } |
| OLD | NEW |