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_decoder_api", |
| 147 "../api:video_encoder_api", |
146 "../call", | 148 "../call", |
147 "../media", | 149 "../media", |
148 "../stats", | 150 "../stats", |
149 ] | 151 ] |
150 | 152 |
151 public_deps = [ | 153 public_deps = [ |
152 "../api:libjingle_peerconnection_api", | 154 "../api:libjingle_peerconnection_api", |
153 ] | 155 ] |
154 | 156 |
155 if (rtc_use_quic) { | 157 if (rtc_use_quic) { |
(...skipping 201 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 |