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

Unified Diff: net/third_party/nss/ssl/BUILD.gn

Issue 1882433002: Removing NSS files and USE_OPENSSL flag (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase. Created 4 years, 8 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 | « net/third_party/nss/ssl.gyp ('k') | net/third_party/nss/ssl/Makefile » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/third_party/nss/ssl/BUILD.gn
diff --git a/net/third_party/nss/ssl/BUILD.gn b/net/third_party/nss/ssl/BUILD.gn
deleted file mode 100644
index 06a113d277bc5a38e57ec9a25dc70eb311c64152..0000000000000000000000000000000000000000
--- a/net/third_party/nss/ssl/BUILD.gn
+++ /dev/null
@@ -1,105 +0,0 @@
-# Copyright (c) 2013 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("ssl_config") {
- include_dirs = [ "." ]
-
- if (is_mac || is_win) {
- defines = [ "NSS_PLATFORM_CLIENT_AUTH" ]
- }
-}
-
-component("libssl") {
- output_name = "crssl"
-
- sources = [
- "SSLerrs.h",
- "authcert.c",
- "cmpcert.c",
- "derive.c",
- "dtlscon.c",
- "preenc.h",
- "prelib.c",
- "ssl.h",
- "ssl3con.c",
- "ssl3ecc.c",
- "ssl3ext.c",
- "ssl3gthr.c",
- "ssl3prot.h",
- "sslauth.c",
- "sslcon.c",
- "ssldef.c",
- "sslenum.c",
- "sslerr.c",
- "sslerr.h",
- "sslerrstrs.c",
- "sslgathr.c",
- "sslimpl.h",
- "sslinfo.c",
- "sslinit.c",
- "sslmutex.c",
- "sslmutex.h",
- "sslnonce.c",
- "sslproto.h",
- "sslreveal.c",
- "sslsecur.c",
- "sslsnce.c",
- "sslsock.c",
- "sslt.h",
- "ssltrace.c",
- "sslver.c",
- "tls13con.c",
- "tls13con.h",
- "tls13hkdf.c",
- "tls13hkdf.h",
- "unix_err.c",
- "unix_err.h",
- ]
-
- public_configs = [ ":ssl_config" ]
-
- cflags = []
- defines = [
- "NO_PKCS11_BYPASS",
- "NSS_ENABLE_ECC",
- "USE_UTIL_DIRECTLY",
- ]
-
- configs -= [ "//build/config/compiler:chromium_code" ]
- configs += [ "//build/config/compiler:no_chromium_code" ]
-
- if (is_clang) {
- # SSL triggers some of these Clang warnings.
- configs -= [ "//build/config/clang:extra_warnings" ]
-
- # There is a broken header guard in /usr/include/nss/secmod.h:
- # https://bugzilla.mozilla.org/show_bug.cgi?id=884072
- cflags = [ "-Wno-header-guard" ]
-
- if (is_ios) {
- # libssl uses routines deprecated on iOS (sem_init/sem_destroy).
- # https://bugzilla.mozilla.org/show_bug.cgi?id=1192500
- cflags += [ "-Wno-deprecated-declarations" ]
- }
- }
-
- if (is_ios) {
- defines += [
- "XP_UNIX",
- "DARWIN",
- "XP_MACOSX",
- ]
- }
-
- if (is_ios) {
- public_deps = [
- "//third_party/nss:nspr",
- "//third_party/nss:nss",
- ]
- }
-
- if (is_debug) {
- defines += [ "DEBUG" ]
- }
-}
« no previous file with comments | « net/third_party/nss/ssl.gyp ('k') | net/third_party/nss/ssl/Makefile » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698