| 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 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 testonly = true | 50 testonly = true |
| 51 | 51 |
| 52 # TODO(kjellander): Remove (bugs.webrtc.org/6828) | 52 # TODO(kjellander): Remove (bugs.webrtc.org/6828) |
| 53 # This needs remote_bitrate_estimator to be moved to webrtc/api first. | 53 # This needs remote_bitrate_estimator to be moved to webrtc/api first. |
| 54 check_includes = false | 54 check_includes = false |
| 55 | 55 |
| 56 sources = [ | 56 sources = [ |
| 57 "audio_receive_stream_unittest.cc", | 57 "audio_receive_stream_unittest.cc", |
| 58 "audio_send_stream_unittest.cc", | 58 "audio_send_stream_unittest.cc", |
| 59 "audio_state_unittest.cc", | 59 "audio_state_unittest.cc", |
| 60 "utility/audio_frame_operations_unittest.cc", | |
| 61 ] | 60 ] |
| 62 deps = [ | 61 deps = [ |
| 63 ":audio", | 62 ":audio", |
| 64 "../api:mock_audio_mixer", | 63 "../api:mock_audio_mixer", |
| 65 "../base:rtc_base_approved", | 64 "../base:rtc_base_approved", |
| 66 "../base:rtc_task_queue", | 65 "../base:rtc_task_queue", |
| 67 "../modules/audio_device:mock_audio_device", | 66 "../modules/audio_device:mock_audio_device", |
| 68 "../modules/audio_mixer:audio_mixer_impl", | 67 "../modules/audio_mixer:audio_mixer_impl", |
| 69 "../modules/congestion_controller:congestion_controller", | 68 "../modules/congestion_controller:congestion_controller", |
| 70 "../modules/pacing:pacing", | 69 "../modules/pacing:pacing", |
| 71 "../test:test_common", | 70 "../test:test_common", |
| 72 "../test:test_support", | 71 "../test:test_support", |
| 73 "utility:audio_frame_operations", | 72 "utility:utility_tests", |
| 74 "//testing/gmock", | 73 "//testing/gmock", |
| 75 "//testing/gtest", | 74 "//testing/gtest", |
| 76 ] | 75 ] |
| 77 if (!build_with_chromium && is_clang) { | 76 if (!build_with_chromium && is_clang) { |
| 78 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 77 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
| 79 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 78 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| 80 } | 79 } |
| 81 } | 80 } |
| 82 } | 81 } |
| OLD | NEW |