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("../webrtc.gni") | 9 import("../webrtc.gni") |
10 | 10 |
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
79 deps = [ | 79 deps = [ |
80 ":call", | 80 ":call", |
81 "../base:rtc_base_approved", | 81 "../base:rtc_base_approved", |
82 "../logging:rtc_event_log_api", | 82 "../logging:rtc_event_log_api", |
83 "../modules/audio_device:mock_audio_device", | 83 "../modules/audio_device:mock_audio_device", |
84 "../modules/audio_mixer", | 84 "../modules/audio_mixer", |
85 "../modules/bitrate_controller", | 85 "../modules/bitrate_controller", |
86 "../modules/pacing", | 86 "../modules/pacing", |
87 "../modules/rtp_rtcp", | 87 "../modules/rtp_rtcp", |
88 "../system_wrappers", | 88 "../system_wrappers", |
| 89 "../test:audio_codec_mocks", |
89 "../test:direct_transport", | 90 "../test:direct_transport", |
90 "../test:test_common", | 91 "../test:test_common", |
91 "../test:test_support", | 92 "../test:test_support", |
92 "../test:video_test_common", | 93 "../test:video_test_common", |
93 "//testing/gmock", | 94 "//testing/gmock", |
94 "//testing/gtest", | 95 "//testing/gtest", |
95 ] | 96 ] |
96 if (!build_with_chromium && is_clang) { | 97 if (!build_with_chromium && is_clang) { |
97 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 98 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
98 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 99 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
(...skipping 26 matching lines...) Expand all Loading... |
125 "//testing/gtest", | 126 "//testing/gtest", |
126 "//webrtc/test:field_trial", | 127 "//webrtc/test:field_trial", |
127 "//webrtc/test:test_common", | 128 "//webrtc/test:test_common", |
128 ] | 129 ] |
129 if (!build_with_chromium && is_clang) { | 130 if (!build_with_chromium && is_clang) { |
130 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 131 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
131 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 132 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
132 } | 133 } |
133 } | 134 } |
134 } | 135 } |
OLD | NEW |