| 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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 testonly = true | 42 testonly = true |
| 43 sources = [ | 43 sources = [ |
| 44 "bitrate_allocator_unittest.cc", | 44 "bitrate_allocator_unittest.cc", |
| 45 "bitrate_estimator_tests.cc", | 45 "bitrate_estimator_tests.cc", |
| 46 "call_unittest.cc", | 46 "call_unittest.cc", |
| 47 "flexfec_receive_stream_unittest.cc", | 47 "flexfec_receive_stream_unittest.cc", |
| 48 "packet_injection_tests.cc", | 48 "packet_injection_tests.cc", |
| 49 ] | 49 ] |
| 50 deps = [ | 50 deps = [ |
| 51 ":call", | 51 ":call", |
| 52 "../base:rtc_base_approved", |
| 52 "../modules/audio_device:mock_audio_device", | 53 "../modules/audio_device:mock_audio_device", |
| 54 "../modules/audio_mixer", |
| 55 "../test:test_common", |
| 53 "//testing/gmock", | 56 "//testing/gmock", |
| 54 "//testing/gtest", | 57 "//testing/gtest", |
| 55 ] | 58 ] |
| 56 if (!build_with_chromium && is_clang) { | 59 if (!build_with_chromium && is_clang) { |
| 57 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 60 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
| 58 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 61 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| 59 } | 62 } |
| 60 } | 63 } |
| 61 } | 64 } |
| OLD | NEW |