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

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

Issue 2812243005: Move ready to send logic from BaseChannel to RtpTransport. (Closed)
Patch Set: Remove dcheck that does not currently hold. 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/pc/channel.h » ('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) 2016 The WebRTC project authors. All Rights Reserved. 1 # Copyright (c) 2016 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 172 matching lines...) Expand 10 before | Expand all | Expand 10 after
183 rtc_test("rtc_pc_unittests") { 183 rtc_test("rtc_pc_unittests") {
184 testonly = true 184 testonly = true
185 185
186 sources = [ 186 sources = [
187 "bundlefilter_unittest.cc", 187 "bundlefilter_unittest.cc",
188 "channel_unittest.cc", 188 "channel_unittest.cc",
189 "channelmanager_unittest.cc", 189 "channelmanager_unittest.cc",
190 "currentspeakermonitor_unittest.cc", 190 "currentspeakermonitor_unittest.cc",
191 "mediasession_unittest.cc", 191 "mediasession_unittest.cc",
192 "rtcpmuxfilter_unittest.cc", 192 "rtcpmuxfilter_unittest.cc",
193 "rtptransport_unittest.cc",
193 "srtpfilter_unittest.cc", 194 "srtpfilter_unittest.cc",
194 ] 195 ]
195 196
196 include_dirs = [ "//third_party/libsrtp/srtp" ] 197 include_dirs = [ "//third_party/libsrtp/srtp" ]
197 198
198 configs += [ ":rtc_pc_unittests_config" ] 199 configs += [ ":rtc_pc_unittests_config" ]
199 200
200 if (!build_with_chromium && is_clang) { 201 if (!build_with_chromium && is_clang) {
201 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). 202 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
202 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 203 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
(...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after
362 "//testing/gmock", 363 "//testing/gmock",
363 ] 364 ]
364 365
365 if (is_android) { 366 if (is_android) {
366 deps += [ "//testing/android/native_test:native_test_support" ] 367 deps += [ "//testing/android/native_test:native_test_support" ]
367 368
368 shard_timeout = 900 369 shard_timeout = 900
369 } 370 }
370 } 371 }
371 } 372 }
OLDNEW
« no previous file with comments | « no previous file | webrtc/pc/channel.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698