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 536 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
547 "..:module_api", | 547 "..:module_api", |
548 "../..:webrtc_common", | 548 "../..:webrtc_common", |
549 "../../base:gtest_prod", | 549 "../../base:gtest_prod", |
550 "../../base:protobuf_utils", | 550 "../../base:protobuf_utils", |
551 "../../base:rtc_base", | 551 "../../base:rtc_base", |
552 "../../base:rtc_base_approved", | 552 "../../base:rtc_base_approved", |
553 "../../common_audio:common_audio", | 553 "../../common_audio:common_audio", |
554 "../../system_wrappers:system_wrappers", | 554 "../../system_wrappers:system_wrappers", |
555 "../../test:test_support", | 555 "../../test:test_support", |
556 "../audio_coding:neteq_tools", | 556 "../audio_coding:neteq_tools", |
| 557 "aec_dump:mock_aec_dump", |
| 558 "aec_dump:mock_aec_dump_unittests", |
557 "test/conversational_speech:unittest", | 559 "test/conversational_speech:unittest", |
558 "//testing/gmock", | 560 "//testing/gmock", |
559 "//testing/gtest", | 561 "//testing/gtest", |
560 ] | 562 ] |
561 | 563 |
562 defines = [] | 564 defines = [] |
563 | 565 |
564 if (apm_debug_dump) { | 566 if (apm_debug_dump) { |
565 defines += [ "WEBRTC_APM_DEBUG_DUMP=1" ] | 567 defines += [ "WEBRTC_APM_DEBUG_DUMP=1" ] |
566 } else { | 568 } else { |
(...skipping 286 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
853 | 855 |
854 deps = [ | 856 deps = [ |
855 ":audioproc_debug_proto", | 857 ":audioproc_debug_proto", |
856 "../..:webrtc_common", | 858 "../..:webrtc_common", |
857 "../../base:protobuf_utils", | 859 "../../base:protobuf_utils", |
858 "../../base:rtc_base_approved", | 860 "../../base:rtc_base_approved", |
859 ] | 861 ] |
860 } | 862 } |
861 } | 863 } |
862 } | 864 } |
OLD | NEW |