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

Side by Side Diff: build/linux/system.gyp

Issue 401153002: Switch to BoringSSL. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase across DEPS change Created 6 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 | Annotate | Revision Log
« no previous file with comments | « android_webview/native/webview_native.gyp ('k') | build/linux/unbundle/replace_gyp_files.py » ('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) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 { 5 {
6 'variables': { 6 'variables': {
7 'conditions': [ 7 'conditions': [
8 ['sysroot!=""', { 8 ['sysroot!=""', {
9 'pkg-config': '<(chroot_cmd) ./pkg-config-wrapper "<(sysroot)" "<(target _arch)" "<(system_libdir)"', 9 'pkg-config': '<(chroot_cmd) ./pkg-config-wrapper "<(sysroot)" "<(target _arch)" "<(system_libdir)"',
10 }, { 10 }, {
(...skipping 967 matching lines...) Expand 10 before | Expand all | Expand 10 after
978 ], 978 ],
979 }, 979 },
980 { 980 {
981 'target_name': 'ssl', 981 'target_name': 'ssl',
982 'type': 'none', 982 'type': 'none',
983 'conditions': [ 983 'conditions': [
984 ['_toolset=="target"', { 984 ['_toolset=="target"', {
985 'conditions': [ 985 'conditions': [
986 ['use_openssl==1', { 986 ['use_openssl==1', {
987 'dependencies': [ 987 'dependencies': [
988 '../../third_party/openssl/openssl.gyp:openssl', 988 '../../third_party/boringssl/boringssl.gyp:boringssl',
989 ], 989 ],
990 }], 990 }],
991 ['use_openssl==0', { 991 ['use_openssl==0', {
992 'dependencies': [ 992 'dependencies': [
993 '../../net/third_party/nss/ssl.gyp:libssl', 993 '../../net/third_party/nss/ssl.gyp:libssl',
994 ], 994 ],
995 'direct_dependent_settings': { 995 'direct_dependent_settings': {
996 'include_dirs+': [ 996 'include_dirs+': [
997 # We need for our local copies of the libssl3 headers to come 997 # We need for our local copies of the libssl3 headers to come
998 # before other includes, as we are shadowing system headers. 998 # before other includes, as we are shadowing system headers.
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
1041 ], 1041 ],
1042 'libraries': [ 1042 'libraries': [
1043 '<!@(<(pkg-config) --libs-only-l libudev)', 1043 '<!@(<(pkg-config) --libs-only-l libudev)',
1044 ], 1044 ],
1045 }, 1045 },
1046 }], 1046 }],
1047 ], 1047 ],
1048 }, 1048 },
1049 ], 1049 ],
1050 } 1050 }
OLDNEW
« no previous file with comments | « android_webview/native/webview_native.gyp ('k') | build/linux/unbundle/replace_gyp_files.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698