| 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 512 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 523 ":audio_processing", | 523 ":audio_processing", |
| 524 ":audioproc_test_utils", | 524 ":audioproc_test_utils", |
| 525 "../..:webrtc_common", | 525 "../..:webrtc_common", |
| 526 "../../base:gtest_prod", | 526 "../../base:gtest_prod", |
| 527 "../../base:rtc_base", | 527 "../../base:rtc_base", |
| 528 "../../base:rtc_base_approved", | 528 "../../base:rtc_base_approved", |
| 529 "../../common_audio:common_audio", | 529 "../../common_audio:common_audio", |
| 530 "../../system_wrappers:system_wrappers", | 530 "../../system_wrappers:system_wrappers", |
| 531 "../../test:test_support", | 531 "../../test:test_support", |
| 532 "../audio_coding:neteq_unittest_tools", | 532 "../audio_coding:neteq_unittest_tools", |
| 533 "test/conversational_speech:unittest", |
| 533 "//testing/gmock", | 534 "//testing/gmock", |
| 534 "//testing/gtest", | 535 "//testing/gtest", |
| 535 ] | 536 ] |
| 536 | 537 |
| 537 defines = [] | 538 defines = [] |
| 538 | 539 |
| 539 if (apm_debug_dump) { | 540 if (apm_debug_dump) { |
| 540 defines += [ "WEBRTC_APM_DEBUG_DUMP=1" ] | 541 defines += [ "WEBRTC_APM_DEBUG_DUMP=1" ] |
| 541 } else { | 542 } else { |
| 542 defines += [ "WEBRTC_APM_DEBUG_DUMP=0" ] | 543 defines += [ "WEBRTC_APM_DEBUG_DUMP=0" ] |
| (...skipping 271 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 814 ] | 815 ] |
| 815 | 816 |
| 816 deps = [ | 817 deps = [ |
| 817 ":audioproc_debug_proto", | 818 ":audioproc_debug_proto", |
| 818 "../..:webrtc_common", | 819 "../..:webrtc_common", |
| 819 "../../base:rtc_base_approved", | 820 "../../base:rtc_base_approved", |
| 820 ] | 821 ] |
| 821 } | 822 } |
| 822 } | 823 } |
| 823 } | 824 } |
| OLD | NEW |