Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(107)

Side by Side Diff: webrtc/audio/BUILD.gn

Issue 2834663003: Allow mocking SendSideCongestionController for Call tests. (Closed)
Patch Set: rebase Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | webrtc/audio/audio_send_stream_unittest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 if (is_android) { 10 if (is_android) {
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
74 "audio_state_unittest.cc", 74 "audio_state_unittest.cc",
75 ] 75 ]
76 deps = [ 76 deps = [
77 ":audio", 77 ":audio",
78 "../api:mock_audio_mixer", 78 "../api:mock_audio_mixer",
79 "../base:rtc_base_approved", 79 "../base:rtc_base_approved",
80 "../base:rtc_task_queue", 80 "../base:rtc_task_queue",
81 "../modules/audio_device:mock_audio_device", 81 "../modules/audio_device:mock_audio_device",
82 "../modules/audio_mixer:audio_mixer_impl", 82 "../modules/audio_mixer:audio_mixer_impl",
83 "../modules/congestion_controller:congestion_controller", 83 "../modules/congestion_controller:congestion_controller",
84 "../modules/congestion_controller:mock_congestion_controller",
84 "../modules/pacing:pacing", 85 "../modules/pacing:pacing",
85 "../test:test_common", 86 "../test:test_common",
86 "../test:test_support", 87 "../test:test_support",
87 "utility:utility_tests", 88 "utility:utility_tests",
88 "//testing/gmock", 89 "//testing/gmock",
89 "//testing/gtest", 90 "//testing/gtest",
90 ] 91 ]
91 92
92 if (!build_with_chromium && is_clang) { 93 if (!build_with_chromium && is_clang) {
93 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). 94 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
(...skipping 27 matching lines...) Expand all
121 "//resources/voice_engine/audio_tiny48.wav", 122 "//resources/voice_engine/audio_tiny48.wav",
122 ] 123 ]
123 124
124 if (!build_with_chromium && is_clang) { 125 if (!build_with_chromium && is_clang) {
125 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163) 126 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163)
126 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 127 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
127 } 128 }
128 } 129 }
129 } 130 }
130 } 131 }
OLDNEW
« no previous file with comments | « no previous file | webrtc/audio/audio_send_stream_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698