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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
55 "srtpsession.h", | 55 "srtpsession.h", |
56 "srtptransport.cc", | 56 "srtptransport.cc", |
57 "srtptransport.h", | 57 "srtptransport.h", |
58 "voicechannel.h", | 58 "voicechannel.h", |
59 ] | 59 ] |
60 | 60 |
61 deps = [ | 61 deps = [ |
62 "..:webrtc_common", | 62 "..:webrtc_common", |
63 "../api:call_api", | 63 "../api:call_api", |
64 "../api:libjingle_peerconnection_api", | 64 "../api:libjingle_peerconnection_api", |
| 65 "../api:optional", |
65 "../api:ortc_api", | 66 "../api:ortc_api", |
66 "../media:rtc_data", | 67 "../media:rtc_data", |
67 "../media:rtc_h264_profile_id", | 68 "../media:rtc_h264_profile_id", |
68 "../media:rtc_media_base", | 69 "../media:rtc_media_base", |
69 "../p2p:rtc_p2p", | 70 "../p2p:rtc_p2p", |
70 "../rtc_base:rtc_base", | 71 "../rtc_base:rtc_base", |
71 "../rtc_base:rtc_task_queue", | 72 "../rtc_base:rtc_task_queue", |
72 ] | 73 ] |
73 | 74 |
74 if (rtc_build_libsrtp) { | 75 if (rtc_build_libsrtp) { |
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
159 | 160 |
160 if (!build_with_chromium && is_clang) { | 161 if (!build_with_chromium && is_clang) { |
161 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 162 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
162 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 163 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
163 } | 164 } |
164 | 165 |
165 deps = [ | 166 deps = [ |
166 ":rtc_pc_base", | 167 ":rtc_pc_base", |
167 "..:webrtc_common", | 168 "..:webrtc_common", |
168 "../api:call_api", | 169 "../api:call_api", |
| 170 "../api:optional", |
169 "../api:rtc_stats_api", | 171 "../api:rtc_stats_api", |
170 "../api/video_codecs:video_codecs_api", | 172 "../api/video_codecs:video_codecs_api", |
171 "../call:call_interfaces", | 173 "../call:call_interfaces", |
172 "../logging:rtc_event_log_api", | 174 "../logging:rtc_event_log_api", |
173 "../media:rtc_data", | 175 "../media:rtc_data", |
174 "../media:rtc_media_base", | 176 "../media:rtc_media_base", |
175 "../p2p:rtc_p2p", | 177 "../p2p:rtc_p2p", |
176 "../rtc_base:rtc_base", | 178 "../rtc_base:rtc_base", |
177 "../rtc_base:rtc_base_approved", | 179 "../rtc_base:rtc_base_approved", |
178 "../stats", | 180 "../stats", |
(...skipping 279 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
458 "//testing/gmock", | 460 "//testing/gmock", |
459 ] | 461 ] |
460 | 462 |
461 if (is_android) { | 463 if (is_android) { |
462 deps += [ "//testing/android/native_test:native_test_support" ] | 464 deps += [ "//testing/android/native_test:native_test_support" ] |
463 | 465 |
464 shard_timeout = 900 | 466 shard_timeout = 900 |
465 } | 467 } |
466 } | 468 } |
467 } | 469 } |
OLD | NEW |