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

Side by Side Diff: webrtc/examples/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/common_video/BUILD.gn ('k') | webrtc/media/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 421 matching lines...) Expand 10 before | Expand all | Expand 10 after
432 ] 432 ]
433 } 433 }
434 434
435 rtc_ios_xctest_test("apprtcmobile_tests") { 435 rtc_ios_xctest_test("apprtcmobile_tests") {
436 info_plist = "objc/AppRTCMobile/ios/Info.plist" 436 info_plist = "objc/AppRTCMobile/ios/Info.plist"
437 sources = [ 437 sources = [
438 "objc/AppRTCMobile/ios/main.m", 438 "objc/AppRTCMobile/ios/main.m",
439 ] 439 ]
440 deps = [ 440 deps = [
441 ":apprtcmobile_test_sources", 441 ":apprtcmobile_test_sources",
442 "../rtc_base:rtc_base_apple",
442 ] 443 ]
443 ldflags = [ "-all_load" ] 444 ldflags = [ "-all_load" ]
444 } 445 }
445 } 446 }
446 } 447 }
447 } 448 }
448 449
449 if (is_linux || is_win) { 450 if (is_linux || is_win) {
450 config("peerconnection_client_warnings_config") { 451 config("peerconnection_client_warnings_config") {
451 cflags = [] 452 cflags = []
(...skipping 211 matching lines...) Expand 10 before | Expand all | Expand 10 after
663 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 664 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
664 } 665 }
665 666
666 deps = [ 667 deps = [
667 "../base:rtc_base", 668 "../base:rtc_base",
668 "../base:rtc_base_approved", 669 "../base:rtc_base_approved",
669 "../p2p:libstunprober", 670 "../p2p:libstunprober",
670 "../p2p:rtc_p2p", 671 "../p2p:rtc_p2p",
671 "../system_wrappers:field_trial_default", 672 "../system_wrappers:field_trial_default",
672 ] 673 ]
674
675 if (is_ios || is_mac) {
676 deps += [ "../rtc_base:rtc_base_apple" ]
677 }
673 } 678 }
674 } 679 }
OLDNEW
« no previous file with comments | « webrtc/common_video/BUILD.gn ('k') | webrtc/media/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698