| OLD | NEW |
| 1 # Copyright 2016 The WebRTC project authors. All Rights Reserved. | 1 # Copyright 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("../build/webrtc.gni") | 9 import("../build/webrtc.gni") |
| 10 if (is_mac) { | 10 if (is_mac) { |
| 11 import("//build/config/mac/mac_sdk.gni") | 11 import("//build/config/mac/mac_sdk.gni") |
| 12 import("//build/config/mac/rules.gni") | 12 import("//build/config/mac/rules.gni") |
| 13 } | 13 } |
| 14 if (is_ios) { | 14 if (is_ios) { |
| 15 import("//build/config/ios/rules.gni") | 15 import("//build/config/ios/rules.gni") |
| 16 } | 16 } |
| 17 | 17 |
| 18 group("sdk") { |
| 19 if (is_ios || (is_mac && mac_deployment_target == "10.7")) { |
| 20 public_deps = [ |
| 21 ":rtc_sdk_framework_objc", |
| 22 ] |
| 23 } |
| 24 } |
| 25 |
| 18 if (is_ios || (is_mac && mac_deployment_target == "10.7")) { | 26 if (is_ios || (is_mac && mac_deployment_target == "10.7")) { |
| 19 config("rtc_sdk_common_objc_config") { | 27 config("rtc_sdk_common_objc_config") { |
| 20 include_dirs = [ | 28 include_dirs = [ |
| 21 "objc/Framework/Classes", | 29 "objc/Framework/Classes", |
| 22 "objc/Framework/Headers", | 30 "objc/Framework/Headers", |
| 23 ] | 31 ] |
| 24 } | 32 } |
| 25 | 33 |
| 26 rtc_static_library("rtc_sdk_common_objc") { | 34 rtc_static_library("rtc_sdk_common_objc") { |
| 27 deps = [ | 35 deps = [ |
| (...skipping 313 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 341 | 349 |
| 342 rtc_static_library("rtc_sdk_objc") { | 350 rtc_static_library("rtc_sdk_objc") { |
| 343 complete_static_lib = true | 351 complete_static_lib = true |
| 344 deps = [ | 352 deps = [ |
| 345 ":rtc_sdk_peerconnection_objc", | 353 ":rtc_sdk_peerconnection_objc", |
| 346 "../system_wrappers:field_trial_default", | 354 "../system_wrappers:field_trial_default", |
| 347 "../system_wrappers:metrics_default", | 355 "../system_wrappers:metrics_default", |
| 348 ] | 356 ] |
| 349 } | 357 } |
| 350 } | 358 } |
| OLD | NEW |