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 218 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
229 ] | 229 ] |
230 | 230 |
231 defines = [] | 231 defines = [] |
232 deps = [ | 232 deps = [ |
233 "..:module_api", | 233 "..:module_api", |
234 "../..:webrtc_common", | 234 "../..:webrtc_common", |
235 "../../audio/utility:audio_frame_operations", | 235 "../../audio/utility:audio_frame_operations", |
236 "../../base:gtest_prod", | 236 "../../base:gtest_prod", |
237 "../../base:protobuf_utils", | 237 "../../base:protobuf_utils", |
238 "../audio_coding:isac", | 238 "../audio_coding:isac", |
| 239 "agc2", |
239 ] | 240 ] |
240 public_deps = [ | 241 public_deps = [ |
241 ":audio_processing_c", | 242 ":audio_processing_c", |
242 ] | 243 ] |
243 | 244 |
244 if (apm_debug_dump) { | 245 if (apm_debug_dump) { |
245 defines += [ "WEBRTC_APM_DEBUG_DUMP=1" ] | 246 defines += [ "WEBRTC_APM_DEBUG_DUMP=1" ] |
246 } else { | 247 } else { |
247 defines += [ "WEBRTC_APM_DEBUG_DUMP=0" ] | 248 defines += [ "WEBRTC_APM_DEBUG_DUMP=0" ] |
248 } | 249 } |
(...skipping 286 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
535 "..:module_api", | 536 "..:module_api", |
536 "../..:webrtc_common", | 537 "../..:webrtc_common", |
537 "../../base:gtest_prod", | 538 "../../base:gtest_prod", |
538 "../../base:protobuf_utils", | 539 "../../base:protobuf_utils", |
539 "../../base:rtc_base", | 540 "../../base:rtc_base", |
540 "../../base:rtc_base_approved", | 541 "../../base:rtc_base_approved", |
541 "../../common_audio:common_audio", | 542 "../../common_audio:common_audio", |
542 "../../system_wrappers:system_wrappers", | 543 "../../system_wrappers:system_wrappers", |
543 "../../test:test_support", | 544 "../../test:test_support", |
544 "../audio_coding:neteq_unittest_tools", | 545 "../audio_coding:neteq_unittest_tools", |
| 546 "agc2:unittests", |
545 "test/conversational_speech:unittest", | 547 "test/conversational_speech:unittest", |
546 "//testing/gmock", | 548 "//testing/gmock", |
547 "//testing/gtest", | 549 "//testing/gtest", |
548 ] | 550 ] |
549 | 551 |
550 defines = [] | 552 defines = [] |
551 | 553 |
552 if (apm_debug_dump) { | 554 if (apm_debug_dump) { |
553 defines += [ "WEBRTC_APM_DEBUG_DUMP=1" ] | 555 defines += [ "WEBRTC_APM_DEBUG_DUMP=1" ] |
554 } else { | 556 } else { |
(...skipping 286 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
841 | 843 |
842 deps = [ | 844 deps = [ |
843 ":audioproc_debug_proto", | 845 ":audioproc_debug_proto", |
844 "../..:webrtc_common", | 846 "../..:webrtc_common", |
845 "../../base:protobuf_utils", | 847 "../../base:protobuf_utils", |
846 "../../base:rtc_base_approved", | 848 "../../base:rtc_base_approved", |
847 ] | 849 ] |
848 } | 850 } |
849 } | 851 } |
850 } | 852 } |
OLD | NEW |