OLD | NEW |
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 if (is_component_build) { | 9 if (is_component_build) { |
10 defines += [ | 10 defines = [ |
11 "BORINGSSL_SHARED_LIBRARY", | 11 "BORINGSSL_SHARED_LIBRARY", |
12 ] | 12 ] |
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 |
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
67 sources += gypi_values.boringssl_linux_x86_sources | 67 sources += gypi_values.boringssl_linux_x86_sources |
68 } else { | 68 } else { |
69 defines += [ "OPENSSL_NO_ASM" ] | 69 defines += [ "OPENSSL_NO_ASM" ] |
70 } | 70 } |
71 } else if (cpu_arch == "arm") { | 71 } else if (cpu_arch == "arm") { |
72 sources += gypi_values.boringssl_linux_arm_sources | 72 sources += gypi_values.boringssl_linux_arm_sources |
73 } else { | 73 } else { |
74 defines += [ "OPENSSL_NO_ASM" ] | 74 defines += [ "OPENSSL_NO_ASM" ] |
75 } | 75 } |
76 } | 76 } |
OLD | NEW |