| 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 12 matching lines...) Expand all Loading... |
| 23 ] | 23 ] |
| 24 | 24 |
| 25 if (!build_with_chromium && is_clang) { | 25 if (!build_with_chromium && is_clang) { |
| 26 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 26 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
| 27 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 27 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| 28 } | 28 } |
| 29 | 29 |
| 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 "../base:rtc_base_approved", | 34 "../base:rtc_base_approved", |
| 35 "../base:rtc_task_queue", |
| 34 "../call:call_interfaces", | 36 "../call:call_interfaces", |
| 35 "../common_audio", | 37 "../common_audio", |
| 36 "../modules/audio_device", | 38 "../modules/audio_device", |
| 37 "../modules/audio_processing", | 39 "../modules/audio_processing", |
| 40 "../modules/congestion_controller:congestion_controller", |
| 41 "../modules/pacing:pacing", |
| 42 "../modules/remote_bitrate_estimator:remote_bitrate_estimator", |
| 43 "../modules/rtp_rtcp:rtp_rtcp", |
| 38 "../system_wrappers", | 44 "../system_wrappers", |
| 39 "../voice_engine", | 45 "../voice_engine", |
| 40 ] | 46 ] |
| 41 } | 47 } |
| 42 if (rtc_include_tests) { | 48 if (rtc_include_tests) { |
| 43 rtc_source_set("audio_tests") { | 49 rtc_source_set("audio_tests") { |
| 44 testonly = true | 50 testonly = true |
| 51 |
| 52 # TODO(kjellander): Remove (bugs.webrtc.org/6828) |
| 53 # This needs remote_bitrate_estimator to be moved to webrtc/api first. |
| 54 check_includes = false |
| 55 |
| 45 sources = [ | 56 sources = [ |
| 46 "audio_receive_stream_unittest.cc", | 57 "audio_receive_stream_unittest.cc", |
| 47 "audio_send_stream_unittest.cc", | 58 "audio_send_stream_unittest.cc", |
| 48 "audio_state_unittest.cc", | 59 "audio_state_unittest.cc", |
| 49 "utility/audio_frame_operations_unittest.cc", | 60 "utility/audio_frame_operations_unittest.cc", |
| 50 ] | 61 ] |
| 51 deps = [ | 62 deps = [ |
| 52 ":audio", | 63 ":audio", |
| 53 "../api:mock_audio_mixer", | 64 "../api:mock_audio_mixer", |
| 54 "../base:rtc_base_approved", | 65 "../base:rtc_base_approved", |
| 66 "../base:rtc_task_queue", |
| 55 "../modules/audio_device:mock_audio_device", | 67 "../modules/audio_device:mock_audio_device", |
| 56 "../modules/audio_mixer:audio_mixer_impl", | 68 "../modules/audio_mixer:audio_mixer_impl", |
| 69 "../modules/congestion_controller:congestion_controller", |
| 70 "../modules/pacing:pacing", |
| 57 "../test:test_common", | 71 "../test:test_common", |
| 58 "../test:test_support", | 72 "../test:test_support", |
| 59 "utility:audio_frame_operations", | 73 "utility:audio_frame_operations", |
| 60 "//testing/gmock", | 74 "//testing/gmock", |
| 61 "//testing/gtest", | 75 "//testing/gtest", |
| 62 ] | 76 ] |
| 63 if (!build_with_chromium && is_clang) { | 77 if (!build_with_chromium && is_clang) { |
| 64 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 78 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
| 65 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 79 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| 66 } | 80 } |
| 67 } | 81 } |
| 68 } | 82 } |
| OLD | NEW |