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

Side by Side Diff: third_party/boringssl/BUILD.gn

Issue 424453002: GN: Fix error in is_component_build in boringssl (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 4 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 | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 # Config for us and everybody else depending on BoringSSL. 5 # Config for us and everybody else depending on BoringSSL.
6 config("openssl_config") { 6 config("openssl_config") {
7 include_dirs = [] 7 include_dirs = []
8 include_dirs += [ "src/include" ] 8 include_dirs += [ "src/include" ]
9 } 9 }
10 10
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
64 defines += [ "OPENSSL_NO_ASM" ] 64 defines += [ "OPENSSL_NO_ASM" ]
65 } 65 }
66 66
67 if (is_component_build) { 67 if (is_component_build) {
68 if (!is_win) { 68 if (!is_win) {
69 configs -= [ "//build/config/gcc:symbol_visibility_hidden" ] 69 configs -= [ "//build/config/gcc:symbol_visibility_hidden" ]
70 } 70 }
71 if (is_posix && !is_mac) { 71 if (is_posix && !is_mac) {
72 # Avoid link failures on Linux x86-64. 72 # Avoid link failures on Linux x86-64.
73 # See http://rt.openssl.org/Ticket/Display.html?id=2466&user=guest&pass=gu est 73 # See http://rt.openssl.org/Ticket/Display.html?id=2466&user=guest&pass=gu est
74 ldflags += [ "-Wl,-Bsymbolic" ] 74 ldflags = [ "-Wl,-Bsymbolic" ]
75 } 75 }
76 } 76 }
77 } 77 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698