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") |
11 import("../build/webrtc.gni") | 11 import("../build/webrtc.gni") |
12 | 12 |
13 # Enable OpenSSL (BoringSSL) for iOS. This is covered in webrtc/supplement.gypi | |
kjellander_webrtc
2015/11/23 09:18:36
This is globally applied for GYP with supplement.g
| |
14 # for the GYP build. | |
15 import("//build_overrides/webrtc.gni") | |
16 if (is_ios && !build_with_chromium) { | |
17 use_openssl = true | |
18 } | |
19 | |
13 config("rtc_base_config") { | 20 config("rtc_base_config") { |
14 include_dirs = [ | 21 include_dirs = [ |
15 "//third_party/jsoncpp/overrides/include", | 22 "//third_party/jsoncpp/overrides/include", |
16 "//third_party/jsoncpp/source/include", | 23 "//third_party/jsoncpp/source/include", |
17 ] | 24 ] |
18 | 25 |
19 defines = [ | 26 defines = [ |
20 "FEATURE_ENABLE_SSL", | 27 "FEATURE_ENABLE_SSL", |
21 "LOGGING=1", | 28 "LOGGING=1", |
22 ] | 29 ] |
(...skipping 563 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
586 "linux.cc", | 593 "linux.cc", |
587 "linux.h", | 594 "linux.h", |
588 ] | 595 ] |
589 } | 596 } |
590 | 597 |
591 if (is_nacl) { | 598 if (is_nacl) { |
592 deps += [ "//native_client_sdk/src/libraries/nacl_io" ] | 599 deps += [ "//native_client_sdk/src/libraries/nacl_io" ] |
593 defines += [ "timezone=_timezone" ] | 600 defines += [ "timezone=_timezone" ] |
594 } | 601 } |
595 } | 602 } |
OLD | NEW |