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

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

Issue 1312463005: Compile remoting client plugin with GN (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 3 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
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 if (is_component_build) { 9 if (is_component_build) {
10 defines = [ "BORINGSSL_SHARED_LIBRARY" ] 10 defines = [ "BORINGSSL_SHARED_LIBRARY" ]
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
93 } else { 93 } else {
94 defines += [ "OPENSSL_NO_ASM" ] 94 defines += [ "OPENSSL_NO_ASM" ]
95 } 95 }
96 } else if (current_cpu == "arm" && (is_linux || is_android)) { 96 } else if (current_cpu == "arm" && (is_linux || is_android)) {
97 sources += gypi_values.boringssl_linux_arm_sources 97 sources += gypi_values.boringssl_linux_arm_sources
98 } else if (current_cpu == "arm64" && (is_linux || is_android)) { 98 } else if (current_cpu == "arm64" && (is_linux || is_android)) {
99 sources += gypi_values.boringssl_linux_aarch64_sources 99 sources += gypi_values.boringssl_linux_aarch64_sources
100 } else { 100 } else {
101 defines += [ "OPENSSL_NO_ASM" ] 101 defines += [ "OPENSSL_NO_ASM" ]
102 } 102 }
103
104 if (is_nacl) {
105 deps += [ "//native_client_sdk/src/libraries/nacl_io" ]
106 }
103 } 107 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698