Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(480)

Side by Side Diff: webrtc/pc/BUILD.gn

Issue 2976363002: Decoupling rtc_base from apple specific code [without cyclic deps] (Closed)
Patch Set: fixing network_tester_server Created 3 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « webrtc/ortc/BUILD.gn ('k') | webrtc/rtc_base/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 280 matching lines...) Expand 10 before | Expand all | Expand 10 after
291 "../system_wrappers:metrics_default", 291 "../system_wrappers:metrics_default",
292 ] 292 ]
293 293
294 if (rtc_build_libsrtp) { 294 if (rtc_build_libsrtp) {
295 deps += [ "//third_party/libsrtp" ] 295 deps += [ "//third_party/libsrtp" ]
296 } 296 }
297 297
298 if (is_android) { 298 if (is_android) {
299 deps += [ "//testing/android/native_test:native_test_support" ] 299 deps += [ "//testing/android/native_test:native_test_support" ]
300 } 300 }
301
302 if (is_ios || is_mac) {
303 deps += [ "../rtc_base:rtc_base_apple" ]
304 }
301 } 305 }
302 306
303 rtc_source_set("pc_test_utils") { 307 rtc_source_set("pc_test_utils") {
304 testonly = true 308 testonly = true
305 sources = [ 309 sources = [
306 "test/fakeaudiocapturemodule.cc", 310 "test/fakeaudiocapturemodule.cc",
307 "test/fakeaudiocapturemodule.h", 311 "test/fakeaudiocapturemodule.h",
308 "test/fakedatachannelprovider.h", 312 "test/fakedatachannelprovider.h",
309 "test/fakeperiodicvideocapturer.h", 313 "test/fakeperiodicvideocapturer.h",
310 "test/fakertccertificategenerator.h", 314 "test/fakertccertificategenerator.h",
(...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after
449 "../system_wrappers:metrics_default", 453 "../system_wrappers:metrics_default",
450 "../test:audio_codec_mocks", 454 "../test:audio_codec_mocks",
451 "//testing/gmock", 455 "//testing/gmock",
452 ] 456 ]
453 457
454 if (is_android) { 458 if (is_android) {
455 deps += [ "//testing/android/native_test:native_test_support" ] 459 deps += [ "//testing/android/native_test:native_test_support" ]
456 460
457 shard_timeout = 900 461 shard_timeout = 900
458 } 462 }
463
464 if (is_ios || is_mac) {
465 deps += [ "../rtc_base:rtc_base_apple" ]
466 }
459 } 467 }
460 } 468 }
OLDNEW
« no previous file with comments | « webrtc/ortc/BUILD.gn ('k') | webrtc/rtc_base/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698