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 20 matching lines...) Expand all Loading... |
31 "audiomonitor.cc", | 31 "audiomonitor.cc", |
32 "audiomonitor.h", | 32 "audiomonitor.h", |
33 "bundlefilter.cc", | 33 "bundlefilter.cc", |
34 "bundlefilter.h", | 34 "bundlefilter.h", |
35 "channel.cc", | 35 "channel.cc", |
36 "channel.h", | 36 "channel.h", |
37 "channelmanager.cc", | 37 "channelmanager.cc", |
38 "channelmanager.h", | 38 "channelmanager.h", |
39 "currentspeakermonitor.cc", | 39 "currentspeakermonitor.cc", |
40 "currentspeakermonitor.h", | 40 "currentspeakermonitor.h", |
| 41 "dtlssrtptransport.cc", |
| 42 "dtlssrtptransport.h", |
41 "externalhmac.cc", | 43 "externalhmac.cc", |
42 "externalhmac.h", | 44 "externalhmac.h", |
43 "mediamonitor.cc", | 45 "mediamonitor.cc", |
44 "mediamonitor.h", | 46 "mediamonitor.h", |
45 "mediasession.cc", | 47 "mediasession.cc", |
46 "mediasession.h", | 48 "mediasession.h", |
47 "rtcpmuxfilter.cc", | 49 "rtcpmuxfilter.cc", |
48 "rtcpmuxfilter.h", | 50 "rtcpmuxfilter.h", |
49 "rtptransport.cc", | 51 "rtptransport.cc", |
50 "rtptransport.h", | 52 "rtptransport.h", |
(...skipping 200 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
251 } | 253 } |
252 | 254 |
253 rtc_test("rtc_pc_unittests") { | 255 rtc_test("rtc_pc_unittests") { |
254 testonly = true | 256 testonly = true |
255 | 257 |
256 sources = [ | 258 sources = [ |
257 "bundlefilter_unittest.cc", | 259 "bundlefilter_unittest.cc", |
258 "channel_unittest.cc", | 260 "channel_unittest.cc", |
259 "channelmanager_unittest.cc", | 261 "channelmanager_unittest.cc", |
260 "currentspeakermonitor_unittest.cc", | 262 "currentspeakermonitor_unittest.cc", |
| 263 "dtlssrtptransport_unittest.cc", |
261 "mediasession_unittest.cc", | 264 "mediasession_unittest.cc", |
262 "rtcpmuxfilter_unittest.cc", | 265 "rtcpmuxfilter_unittest.cc", |
263 "rtptransport_unittest.cc", | 266 "rtptransport_unittest.cc", |
264 "rtptransporttestutil.h", | 267 "rtptransporttestutil.h", |
265 "srtpfilter_unittest.cc", | 268 "srtpfilter_unittest.cc", |
266 "srtpsession_unittest.cc", | 269 "srtpsession_unittest.cc", |
267 "srtptestutil.h", | 270 "srtptestutil.h", |
268 "srtptransport_unittest.cc", | 271 "srtptransport_unittest.cc", |
269 ] | 272 ] |
270 | 273 |
(...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
457 "//testing/gmock", | 460 "//testing/gmock", |
458 ] | 461 ] |
459 | 462 |
460 if (is_android) { | 463 if (is_android) { |
461 deps += [ "//testing/android/native_test:native_test_support" ] | 464 deps += [ "//testing/android/native_test:native_test_support" ] |
462 | 465 |
463 shard_timeout = 900 | 466 shard_timeout = 900 |
464 } | 467 } |
465 } | 468 } |
466 } | 469 } |
OLD | NEW |