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

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

Issue 992733002: Remove //net (except for Android test stuff) and sdch (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 9 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 002bace8d6167efdd8d97b809b4d029e457c3655..0000000000000000000000000000000000000000
--- a/net/third_party/nss/ssl/BUILD.gn
+++ /dev/null
@@ -1,129 +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",
- "bodge/secitem_array.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",
- "sslplatf.c",
- "sslproto.h",
- "sslreveal.c",
- "sslsecur.c",
- "sslsnce.c",
- "sslsock.c",
- "sslt.h",
- "ssltrace.c",
- "sslver.c",
- "unix_err.c",
- "unix_err.h",
- "win32err.c",
- "win32err.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_win) {
- cflags += [ "/wd4267" ] # Disable warning: Conversion from size_t to 'type'.
-
- sources -= [
- "unix_err.c",
- "unix_err.h",
- ]
- if (component_mode == "shared_library") {
- ldflags = [ "/DEF:" + rebase_path("exports_win.def", root_build_dir) ]
- }
- } else if (is_linux) {
- if (component_mode == "shared_library") {
- configs -= [ "//build/config/gcc:symbol_visibility_hidden" ]
- }
-
- libs = [ "dl" ]
-
- include_dirs = [ "bodge" ]
-
- # Must be after ssl_config since we want our SSL headers to take
- # precedence.
- public_configs += [ "//third_party/nss:system_nss_no_ssl_config" ]
- } else if (is_mac) {
- libs = [ "Security.framework" ]
- }
-
- if (is_clang) {
- # SSL triggers some of these Clang warnings.
- configs -= [ "//build/config/clang:extra_warnings" ]
- }
-
- if (is_posix) {
- sources -= [
- "win32err.c",
- "win32err.h",
- ]
- }
-
- if (is_mac || is_ios) {
- defines += [
- "XP_UNIX",
- "DARWIN",
- "XP_MACOSX",
- ]
- }
-
- if (is_mac || is_ios || is_win) {
- sources -= [ "bodge/secitem_array.c" ]
- 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