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 28 matching lines...) Expand all Loading... |
39 "currentspeakermonitor.cc", | 39 "currentspeakermonitor.cc", |
40 "currentspeakermonitor.h", | 40 "currentspeakermonitor.h", |
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", |
| 50 "rtptransport.h", |
49 "srtpfilter.cc", | 51 "srtpfilter.cc", |
50 "srtpfilter.h", | 52 "srtpfilter.h", |
51 "voicechannel.h", | 53 "voicechannel.h", |
52 ] | 54 ] |
53 | 55 |
54 deps = [ | 56 deps = [ |
55 "../api:call_api", | 57 "../api:call_api", |
56 "../base:rtc_base", | 58 "../base:rtc_base", |
57 "../media", | 59 "../media", |
58 ] | 60 ] |
(...skipping 298 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
357 "//testing/gmock", | 359 "//testing/gmock", |
358 ] | 360 ] |
359 | 361 |
360 if (is_android) { | 362 if (is_android) { |
361 deps += [ "//testing/android/native_test:native_test_support" ] | 363 deps += [ "//testing/android/native_test:native_test_support" ] |
362 | 364 |
363 shard_timeout = 900 | 365 shard_timeout = 900 |
364 } | 366 } |
365 } | 367 } |
366 } | 368 } |
OLD | NEW |