| 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 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 54 libs = [ | 54 libs = [ |
| 55 "Cocoa.framework", | 55 "Cocoa.framework", |
| 56 "Foundation.framework", | 56 "Foundation.framework", |
| 57 "IOKit.framework", | 57 "IOKit.framework", |
| 58 "Security.framework", | 58 "Security.framework", |
| 59 "SystemConfiguration.framework", | 59 "SystemConfiguration.framework", |
| 60 ] | 60 ] |
| 61 } | 61 } |
| 62 } | 62 } |
| 63 | 63 |
| 64 if (is_linux && !build_with_chromium) { | |
| 65 # Provides the same functionality as the //crypto:platform target, which | |
| 66 # WebRTC cannot use as we don't sync src/crypto from Chromium. | |
| 67 group("linux_system_ssl") { | |
| 68 deps = [ | |
| 69 "//third_party/boringssl", | |
| 70 ] | |
| 71 } | |
| 72 } | |
| 73 | |
| 74 if (!rtc_build_ssl) { | 64 if (!rtc_build_ssl) { |
| 75 config("external_ssl_library") { | 65 config("external_ssl_library") { |
| 76 assert(rtc_ssl_root != "", | 66 assert(rtc_ssl_root != "", |
| 77 "You must specify rtc_ssl_root when rtc_build_ssl==0.") | 67 "You must specify rtc_ssl_root when rtc_build_ssl==0.") |
| 78 include_dirs = [ rtc_ssl_root ] | 68 include_dirs = [ rtc_ssl_root ] |
| 79 } | 69 } |
| 80 } | 70 } |
| 81 | 71 |
| 82 source_set("protobuf_utils") { | 72 source_set("protobuf_utils") { |
| 83 sources = [ | 73 sources = [ |
| (...skipping 895 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 979 if (is_android) { | 969 if (is_android) { |
| 980 android_library("base_java") { | 970 android_library("base_java") { |
| 981 java_files = [ | 971 java_files = [ |
| 982 "java/src/org/webrtc/ContextUtils.java", | 972 "java/src/org/webrtc/ContextUtils.java", |
| 983 "java/src/org/webrtc/Logging.java", | 973 "java/src/org/webrtc/Logging.java", |
| 984 "java/src/org/webrtc/Size.java", | 974 "java/src/org/webrtc/Size.java", |
| 985 "java/src/org/webrtc/ThreadUtils.java", | 975 "java/src/org/webrtc/ThreadUtils.java", |
| 986 ] | 976 ] |
| 987 } | 977 } |
| 988 } | 978 } |
| OLD | NEW |