OLD | NEW |
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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 "srtpfilter.cc", | 51 "srtpfilter.cc", |
52 "srtpfilter.h", | 52 "srtpfilter.h", |
| 53 "srtpsession.cc", |
| 54 "srtpsession.h", |
53 "voicechannel.h", | 55 "voicechannel.h", |
54 ] | 56 ] |
55 | 57 |
56 deps = [ | 58 deps = [ |
57 "..:webrtc_common", | 59 "..:webrtc_common", |
58 "../api:call_api", | 60 "../api:call_api", |
59 "../api:libjingle_peerconnection_api", | 61 "../api:libjingle_peerconnection_api", |
60 "../api:ortc_api", | 62 "../api:ortc_api", |
61 "../base:rtc_base", | 63 "../base:rtc_base", |
62 "../base:rtc_task_queue", | 64 "../base:rtc_task_queue", |
(...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
250 | 252 |
251 sources = [ | 253 sources = [ |
252 "bundlefilter_unittest.cc", | 254 "bundlefilter_unittest.cc", |
253 "channel_unittest.cc", | 255 "channel_unittest.cc", |
254 "channelmanager_unittest.cc", | 256 "channelmanager_unittest.cc", |
255 "currentspeakermonitor_unittest.cc", | 257 "currentspeakermonitor_unittest.cc", |
256 "mediasession_unittest.cc", | 258 "mediasession_unittest.cc", |
257 "rtcpmuxfilter_unittest.cc", | 259 "rtcpmuxfilter_unittest.cc", |
258 "rtptransport_unittest.cc", | 260 "rtptransport_unittest.cc", |
259 "srtpfilter_unittest.cc", | 261 "srtpfilter_unittest.cc", |
| 262 "srtpsession_unittest.cc", |
| 263 "srtptestutil.h", |
260 ] | 264 ] |
261 | 265 |
262 include_dirs = [ "//third_party/libsrtp/srtp" ] | 266 include_dirs = [ "//third_party/libsrtp/srtp" ] |
263 | 267 |
264 configs += [ ":rtc_pc_unittests_config" ] | 268 configs += [ ":rtc_pc_unittests_config" ] |
265 | 269 |
266 if (!build_with_chromium && is_clang) { | 270 if (!build_with_chromium && is_clang) { |
267 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 271 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
268 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 272 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
269 } | 273 } |
(...skipping 177 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
447 "//testing/gmock", | 451 "//testing/gmock", |
448 ] | 452 ] |
449 | 453 |
450 if (is_android) { | 454 if (is_android) { |
451 deps += [ "//testing/android/native_test:native_test_support" ] | 455 deps += [ "//testing/android/native_test:native_test_support" ] |
452 | 456 |
453 shard_timeout = 900 | 457 shard_timeout = 900 |
454 } | 458 } |
455 } | 459 } |
456 } | 460 } |
OLD | NEW |