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

Unified Diff: third_party/boringssl/BUILD.gn

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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « remoting/remoting_nacl.gyp ('k') | third_party/boringssl/boringssl.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/boringssl/BUILD.gn
diff --git a/third_party/boringssl/BUILD.gn b/third_party/boringssl/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..468d17c6a8239c8195b540a20d97be20147e0972
--- /dev/null
+++ b/third_party/boringssl/BUILD.gn
@@ -0,0 +1,76 @@
+# Copyright 2014 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+# Config for us and everybody else depending on BoringSSL.
+config("openssl_config") {
+ include_dirs = []
+ include_dirs += [ "src/include" ]
+}
+
+# Config internal to this build file.
+config("openssl_internal_config") {
+ visibility = ":*" # Only targets in this file can depend on this.
+}
+
+# The list of BoringSSL files is kept in boringssl.gypi.
+gypi_values = exec_script(
+ "//build/gypi_to_gn.py",
+ [ rebase_path("//third_party/boringssl/boringssl.gypi") ],
+ "scope",
+ [ "//third_party/boringssl/boringssl.gypi" ])
+
+component("boringssl") {
+ sources = gypi_values.boringssl_lib_sources
+
+ direct_dependent_configs = [ ":openssl_config" ]
+
+ cflags = []
+
+ configs -= [ "//build/config/compiler:chromium_code" ]
+ configs += [ "//build/config/compiler:no_chromium_code" ]
+
+ # Also gets the include dirs from :openssl_config
+ include_dirs = [
+ "src/include",
+ # This is for arm_arch.h, which is needed by some asm files. Since the
+ # asm files are generated and kept in a different directory, they
+ # cannot use relative paths to find this file.
+ "src/crypto",
+ ]
+
+ if (cpu_arch == "x64") {
+ if (is_mac) {
+ sources += gypi_values.boringssl_mac_x86_64_sources
+ } else if (is_linux || is_android) {
+ sources += gypi_values.boringssl_linux_x86_64_sources
+ } else if (is_win) {
+ sources += gypi_values.boringssl_win_x86_64_sources
+ } else {
+ defines += [ "OPENSSL_NO_ASM" ]
+ }
+ } else if (cpu_arch == "x86") {
+ if (is_mac) {
+ sources += gypi_values.boringssl_mac_x86_sources
+ } else if (is_linux || is_android) {
+ sources += gypi_values.boringssl_linux_x86_sources
+ } else {
+ defines += [ "OPENSSL_NO_ASM" ]
+ }
+ } else if (cpu_arch == "arm") {
+ sources += gypi_values.boringssl_linux_arm_sources
+ } else {
+ defines += [ "OPENSSL_NO_ASM" ]
+ }
+
+ if (is_component_build) {
+ if (!is_win) {
+ configs -= [ "//build/config/gcc:symbol_visibility_hidden" ]
+ }
+ if (is_posix && !is_mac) {
+ # Avoid link failures on Linux x86-64.
+ # See http://rt.openssl.org/Ticket/Display.html?id=2466&user=guest&pass=guest
+ ldflags += [ "-Wl,-Bsymbolic" ]
+ }
+ }
+}
« no previous file with comments | « remoting/remoting_nacl.gyp ('k') | third_party/boringssl/boringssl.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698