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

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

Issue 462983002: GN: Make content_shell and webkit_unit_tests work in component build (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
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 += [ 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
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 }
OLDNEW
« content/renderer/render_thread_impl.h ('K') | « sync/BUILD.gn ('k') | ui/base/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698