OLD | NEW |
1 # Copyright (c) 2015 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2015 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 | 10 |
(...skipping 19 matching lines...) Loading... |
30 deps = [ | 30 deps = [ |
31 "..:webrtc_common", | 31 "..:webrtc_common", |
32 "../api:audio_mixer_api", | 32 "../api:audio_mixer_api", |
33 "../api:call_api", | 33 "../api:call_api", |
34 "../base:rtc_base_approved", | 34 "../base:rtc_base_approved", |
35 "../common_audio", | 35 "../common_audio", |
36 "../modules/audio_device", | 36 "../modules/audio_device", |
37 "../modules/audio_processing", | 37 "../modules/audio_processing", |
38 "../system_wrappers", | 38 "../system_wrappers", |
39 "../voice_engine", | 39 "../voice_engine", |
40 "utility", # Bogus dep, needed for landing | |
41 # codereview.webrtc.org/2424173003 without breaking | |
42 # internal projects. See | |
43 # bugs.webrtc.org/6548. TODO(aleloi): remove dependency | |
44 # when codereview.webrtc.org/2424173003 has landed. | |
45 ] | 40 ] |
46 } | 41 } |
47 if (rtc_include_tests) { | 42 if (rtc_include_tests) { |
48 rtc_source_set("audio_tests") { | 43 rtc_source_set("audio_tests") { |
49 testonly = true | 44 testonly = true |
50 sources = [ | 45 sources = [ |
51 "audio_receive_stream_unittest.cc", | 46 "audio_receive_stream_unittest.cc", |
52 "audio_send_stream_unittest.cc", | 47 "audio_send_stream_unittest.cc", |
53 "audio_state_unittest.cc", | 48 "audio_state_unittest.cc", |
| 49 "utility/audio_frame_operations_unittest.cc", |
54 ] | 50 ] |
55 deps = [ | 51 deps = [ |
56 ":audio", | 52 ":audio", |
57 "../api:mock_audio_mixer", | 53 "../api:mock_audio_mixer", |
58 "../base:rtc_base_approved", | 54 "../base:rtc_base_approved", |
59 "../modules/audio_device:mock_audio_device", | 55 "../modules/audio_device:mock_audio_device", |
60 "../modules/audio_mixer:audio_mixer_impl", | 56 "../modules/audio_mixer:audio_mixer_impl", |
61 "../test:test_common", | 57 "../test:test_common", |
| 58 "../test:test_support", |
| 59 "utility:audio_frame_operations", |
62 "//testing/gmock", | 60 "//testing/gmock", |
63 "//testing/gtest", | 61 "//testing/gtest", |
64 ] | 62 ] |
65 if (!build_with_chromium && is_clang) { | 63 if (!build_with_chromium && is_clang) { |
66 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 64 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
67 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 65 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
68 } | 66 } |
69 } | 67 } |
70 } | 68 } |
OLD | NEW |