OLD | NEW |
1 # Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2014 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/config/crypto.gni") | 9 import("//build/config/crypto.gni") |
10 import("//build/config/ui.gni") | 10 import("//build/config/ui.gni") |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
42 config("nss_config") { | 42 config("nss_config") { |
43 defines = [ | 43 defines = [ |
44 "SSL_USE_NSS", | 44 "SSL_USE_NSS", |
45 "HAVE_NSS_SSL_H", | 45 "HAVE_NSS_SSL_H", |
46 "SSL_USE_NSS_RNG", | 46 "SSL_USE_NSS_RNG", |
47 ] | 47 ] |
48 } | 48 } |
49 | 49 |
50 config("ios_config") { | 50 config("ios_config") { |
51 libs = [ | 51 libs = [ |
| 52 "CFNetwork.framework", |
| 53 |
52 #"Foundation.framework", # Already included in //build/config:default_libs. | 54 #"Foundation.framework", # Already included in //build/config:default_libs. |
53 "Security.framework", | 55 "Security.framework", |
54 "SystemConfiguration.framework", | 56 "SystemConfiguration.framework", |
55 | 57 |
56 #"UIKit.framework", # Already included in //build/config:default_libs. | 58 #"UIKit.framework", # Already included in //build/config:default_libs. |
57 ] | 59 ] |
58 } | 60 } |
59 | 61 |
60 config("mac_config") { | 62 config("mac_config") { |
61 libs = [ | 63 libs = [ |
(...skipping 561 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
623 defines += [ "CARBON_DEPRECATED=YES" ] | 625 defines += [ "CARBON_DEPRECATED=YES" ] |
624 } | 626 } |
625 | 627 |
626 if (is_linux || is_android) { | 628 if (is_linux || is_android) { |
627 sources += [ | 629 sources += [ |
628 "linux.cc", | 630 "linux.cc", |
629 "linux.h", | 631 "linux.h", |
630 ] | 632 ] |
631 } | 633 } |
632 } | 634 } |
OLD | NEW |