Roll src/third_party/WebKit 8121bc6:918aba1 (svn 188871:188878)
[chromium-blink-merge.git] / net / third_party / nss / ssl / BUILD.gn
blob918e453845cdc7bfe001e38370c2f38d267aee8e
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
5 config("ssl_config") {
6   include_dirs = [ "." ]
8   if (is_mac || is_win) {
9     defines = [ "NSS_PLATFORM_CLIENT_AUTH" ]
10   }
13 component("libssl") {
14   output_name = "crssl"
16   sources = [
17     "authcert.c",
18     "cmpcert.c",
19     "derive.c",
20     "dtlscon.c",
21     "preenc.h",
22     "prelib.c",
23     "ssl.h",
24     "ssl3con.c",
25     "ssl3ecc.c",
26     "ssl3ext.c",
27     "ssl3gthr.c",
28     "ssl3prot.h",
29     "sslauth.c",
30     "sslcon.c",
31     "ssldef.c",
32     "sslenum.c",
33     "sslerr.c",
34     "sslerr.h",
35     "SSLerrs.h",
36     "sslerrstrs.c",
37     "sslgathr.c",
38     "sslimpl.h",
39     "sslinfo.c",
40     "sslinit.c",
41     "sslmutex.c",
42     "sslmutex.h",
43     "sslnonce.c",
44     "sslplatf.c",
45     "sslproto.h",
46     "sslreveal.c",
47     "sslsecur.c",
48     "sslsnce.c",
49     "sslsock.c",
50     "sslt.h",
51     "ssltrace.c",
52     "sslver.c",
53     "unix_err.c",
54     "unix_err.h",
55     "win32err.c",
56     "win32err.h",
57     "bodge/secitem_array.c",
58   ]
60   public_configs = [ ":ssl_config" ]
62   cflags = []
63   defines = [
64     "NO_PKCS11_BYPASS",
65     "NSS_ENABLE_ECC",
66     "USE_UTIL_DIRECTLY",
67   ]
69   configs -= [ "//build/config/compiler:chromium_code" ]
70   configs += [ "//build/config/compiler:no_chromium_code" ]
72   if (is_win) {
73     cflags += [ "/wd4267" ]  # Disable warning: Conversion from size_t to 'type'.
75     sources -= [
76       "unix_err.c",
77       "unix_err.h",
78     ]
79     if (component_mode == "shared_library") {
80       ldflags = [ "/DEF:" + rebase_path("exports_win.def", root_build_dir) ]
81     }
82   } else if (is_linux) {
83     if (component_mode == "shared_library") {
84       configs -= [ "//build/config/gcc:symbol_visibility_hidden" ]
85     }
87     libs = [ "dl" ]
89     include_dirs = [ "bodge" ]
91     # Must be after ssl_config since we want our SSL headers to take
92     # precedence.
93     public_configs += [ "//third_party/nss:system_nss_no_ssl_config" ]
94   } else if (is_mac) {
95     libs = [ "Security.framework" ]
96   }
98   if (is_clang) {
99     # SSL triggers some of these Clang warnings.
100     configs -= [ "//build/config/clang:extra_warnings" ]
101   }
103   if (is_posix) {
104     sources -= [
105       "win32err.c",
106       "win32err.h",
107     ]
108   }
110   if (is_mac || is_ios) {
111     defines += [
112       "XP_UNIX",
113       "DARWIN",
114       "XP_MACOSX",
115     ]
116   }
118   if (is_mac || is_ios || is_win) {
119     sources -= [ "bodge/secitem_array.c" ]
120     public_deps = [
121       "//third_party/nss:nspr",
122       "//third_party/nss:nss",
123     ]
124   }
126   if (is_debug) {
127     defines += [ "DEBUG" ]
128   }