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 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
136 | 136 |
137 if (!build_with_chromium && is_clang) { | 137 if (!build_with_chromium && is_clang) { |
138 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 138 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
139 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 139 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
140 } | 140 } |
141 | 141 |
142 deps = [ | 142 deps = [ |
143 ":rtc_pc", | 143 ":rtc_pc", |
144 "../api:call_api", | 144 "../api:call_api", |
145 "../api:rtc_stats_api", | 145 "../api:rtc_stats_api", |
146 "../api/video_codecs:video_codecs_api", | |
147 "../call", | 146 "../call", |
148 "../media", | 147 "../media", |
149 "../stats", | 148 "../stats", |
150 ] | 149 ] |
151 | 150 |
152 public_deps = [ | 151 public_deps = [ |
153 "../api:libjingle_peerconnection_api", | 152 "../api:libjingle_peerconnection_api", |
154 ] | 153 ] |
155 | 154 |
156 if (rtc_use_quic) { | 155 if (rtc_use_quic) { |
(...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
358 "//testing/gmock", | 357 "//testing/gmock", |
359 ] | 358 ] |
360 | 359 |
361 if (is_android) { | 360 if (is_android) { |
362 deps += [ "//testing/android/native_test:native_test_support" ] | 361 deps += [ "//testing/android/native_test:native_test_support" ] |
363 | 362 |
364 shard_timeout = 900 | 363 shard_timeout = 900 |
365 } | 364 } |
366 } | 365 } |
367 } | 366 } |
OLD | NEW |