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

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

Issue 1459783002: Roll src/third_party/boringssl/src d7421ebf6..3ac32b1ed (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix build, estark comments Created 5 years, 1 month 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
« no previous file with comments | « net/quic/crypto/curve25519_key_exchange.cc ('k') | third_party/boringssl/boringssl.gyp » ('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 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 import("//build/config/sanitizers/sanitizers.gni") 5 import("//build/config/sanitizers/sanitizers.gni")
6 6
7 # Config for us and everybody else depending on BoringSSL. 7 # Config for us and everybody else depending on BoringSSL.
8 config("openssl_config") { 8 config("openssl_config") {
9 include_dirs = [] 9 defines = [ "OPENSSL_SMALL" ]
10 include_dirs += [ "src/include" ] 10 include_dirs = [ "src/include" ]
11 if (is_component_build) { 11 if (is_component_build) {
12 defines = [ "BORINGSSL_SHARED_LIBRARY" ] 12 defines += [ "BORINGSSL_SHARED_LIBRARY" ]
13 } 13 }
14 } 14 }
15 15
16 # Config internal to this build file. 16 # Config internal to this build file.
17 config("openssl_internal_config") { 17 config("openssl_internal_config") {
18 visibility = [ ":*" ] # Only targets in this file can depend on this. 18 visibility = [ ":*" ] # Only targets in this file can depend on this.
19 } 19 }
20 20
21 # The list of BoringSSL files is kept in boringssl.gypi. 21 # The list of BoringSSL files is kept in boringssl.gypi.
22 gypi_values = 22 gypi_values =
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
94 } else if (current_cpu == "arm64" && (is_linux || is_android)) { 94 } else if (current_cpu == "arm64" && (is_linux || is_android)) {
95 sources += gypi_values.boringssl_linux_aarch64_sources 95 sources += gypi_values.boringssl_linux_aarch64_sources
96 } else { 96 } else {
97 defines += [ "OPENSSL_NO_ASM" ] 97 defines += [ "OPENSSL_NO_ASM" ]
98 } 98 }
99 99
100 if (is_nacl) { 100 if (is_nacl) {
101 deps += [ "//native_client_sdk/src/libraries/nacl_io" ] 101 deps += [ "//native_client_sdk/src/libraries/nacl_io" ]
102 } 102 }
103 } 103 }
OLDNEW
« no previous file with comments | « net/quic/crypto/curve25519_key_exchange.cc ('k') | third_party/boringssl/boringssl.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698