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

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

Issue 2981013002: Introduce RtpTransportInternal and SrtpTransport. (Closed)
Patch Set: Depend on test:test_support for gmock. Created 3 years, 5 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 30 matching lines...) Expand all
41 "externalhmac.cc", 41 "externalhmac.cc",
42 "externalhmac.h", 42 "externalhmac.h",
43 "mediamonitor.cc", 43 "mediamonitor.cc",
44 "mediamonitor.h", 44 "mediamonitor.h",
45 "mediasession.cc", 45 "mediasession.cc",
46 "mediasession.h", 46 "mediasession.h",
47 "rtcpmuxfilter.cc", 47 "rtcpmuxfilter.cc",
48 "rtcpmuxfilter.h", 48 "rtcpmuxfilter.h",
49 "rtptransport.cc", 49 "rtptransport.cc",
50 "rtptransport.h", 50 "rtptransport.h",
51 "rtptransportinternal.h",
51 "srtpfilter.cc", 52 "srtpfilter.cc",
52 "srtpfilter.h", 53 "srtpfilter.h",
53 "srtpsession.cc", 54 "srtpsession.cc",
54 "srtpsession.h", 55 "srtpsession.h",
56 "srtptransport.cc",
57 "srtptransport.h",
55 "voicechannel.h", 58 "voicechannel.h",
56 ] 59 ]
57 60
58 deps = [ 61 deps = [
59 "..:webrtc_common", 62 "..:webrtc_common",
60 "../api:call_api", 63 "../api:call_api",
61 "../api:libjingle_peerconnection_api", 64 "../api:libjingle_peerconnection_api",
62 "../api:ortc_api", 65 "../api:ortc_api",
63 "../media:rtc_data", 66 "../media:rtc_data",
64 "../media:rtc_h264_profile_id", 67 "../media:rtc_h264_profile_id",
(...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after
251 testonly = true 254 testonly = true
252 255
253 sources = [ 256 sources = [
254 "bundlefilter_unittest.cc", 257 "bundlefilter_unittest.cc",
255 "channel_unittest.cc", 258 "channel_unittest.cc",
256 "channelmanager_unittest.cc", 259 "channelmanager_unittest.cc",
257 "currentspeakermonitor_unittest.cc", 260 "currentspeakermonitor_unittest.cc",
258 "mediasession_unittest.cc", 261 "mediasession_unittest.cc",
259 "rtcpmuxfilter_unittest.cc", 262 "rtcpmuxfilter_unittest.cc",
260 "rtptransport_unittest.cc", 263 "rtptransport_unittest.cc",
264 "rtptransporttestutil.h",
261 "srtpfilter_unittest.cc", 265 "srtpfilter_unittest.cc",
262 "srtpsession_unittest.cc", 266 "srtpsession_unittest.cc",
263 "srtptestutil.h", 267 "srtptestutil.h",
268 "srtptransport_unittest.cc",
264 ] 269 ]
265 270
266 include_dirs = [ "//third_party/libsrtp/srtp" ] 271 include_dirs = [ "//third_party/libsrtp/srtp" ]
267 272
268 configs += [ ":rtc_pc_unittests_config" ] 273 configs += [ ":rtc_pc_unittests_config" ]
269 274
270 if (!build_with_chromium && is_clang) { 275 if (!build_with_chromium && is_clang) {
271 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). 276 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
272 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 277 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
273 } 278 }
274 279
275 if (is_win) { 280 if (is_win) {
276 libs = [ "strmiids.lib" ] 281 libs = [ "strmiids.lib" ]
277 } 282 }
278 283
279 deps = [ 284 deps = [
280 ":libjingle_peerconnection", 285 ":libjingle_peerconnection",
281 ":rtc_pc", 286 ":rtc_pc",
282 "../logging:rtc_event_log_api", 287 "../logging:rtc_event_log_api",
283 "../media:rtc_media_base", 288 "../media:rtc_media_base",
284 "../media:rtc_media_tests_utils", 289 "../media:rtc_media_tests_utils",
285 "../p2p:p2p_test_utils", 290 "../p2p:p2p_test_utils",
286 "../p2p:rtc_p2p", 291 "../p2p:rtc_p2p",
287 "../rtc_base:rtc_base", 292 "../rtc_base:rtc_base",
288 "../rtc_base:rtc_base_approved", 293 "../rtc_base:rtc_base_approved",
289 "../rtc_base:rtc_base_tests_main", 294 "../rtc_base:rtc_base_tests_main",
290 "../rtc_base:rtc_base_tests_utils", 295 "../rtc_base:rtc_base_tests_utils",
291 "../system_wrappers:metrics_default", 296 "../system_wrappers:metrics_default",
297 "../test:test_support",
292 ] 298 ]
293 299
294 if (rtc_build_libsrtp) { 300 if (rtc_build_libsrtp) {
295 deps += [ "//third_party/libsrtp" ] 301 deps += [ "//third_party/libsrtp" ]
296 } 302 }
297 303
298 if (is_android) { 304 if (is_android) {
299 deps += [ "//testing/android/native_test:native_test_support" ] 305 deps += [ "//testing/android/native_test:native_test_support" ]
300 } 306 }
301 } 307 }
(...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after
451 "//testing/gmock", 457 "//testing/gmock",
452 ] 458 ]
453 459
454 if (is_android) { 460 if (is_android) {
455 deps += [ "//testing/android/native_test:native_test_support" ] 461 deps += [ "//testing/android/native_test:native_test_support" ]
456 462
457 shard_timeout = 900 463 shard_timeout = 900
458 } 464 }
459 } 465 }
460 } 466 }
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