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

Unified Diff: tools/gn/secondary/crypto/ssl/BUILD.gn

Issue 139743009: Remove use_system_ssl GYP flag (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 11 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 | « build/linux/system.gyp ('k') | tools/gn/secondary/crypto/ssl/flags.gni » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/gn/secondary/crypto/ssl/BUILD.gn
diff --git a/tools/gn/secondary/crypto/ssl/BUILD.gn b/tools/gn/secondary/crypto/ssl/BUILD.gn
index dc78efc710db04ad89aeae3cc24b22d2a5d9da48..0cb3ce0c0ffba2a5871ace59dd442b3dc3288744 100644
--- a/tools/gn/secondary/crypto/ssl/BUILD.gn
+++ b/tools/gn/secondary/crypto/ssl/BUILD.gn
@@ -13,14 +13,6 @@ config("ssl_preprocessor_flags") {
}
}
-# Config for system SSL on Linux.
-if (is_linux && use_system_ssl) {
- pkg_config("system_ssl_config") {
- packages = [ "nss" ]
- defines = [ "USE_SYSTEM_SSL" ]
- }
-}
-
# This meta-target will include the SSL library according to the build flags.
group("metassl") {
direct_dependent_configs = [ ":ssl_preprocessor_flags" ]
@@ -29,9 +21,6 @@ group("metassl") {
assert(is_linux)
deps = "//third_party/openssl"
use_openssl = false
- } else if (use_system_ssl) {
- assert(is_linux)
- direct_dependent_configs = ":system_ssl_config"
} else {
deps = [ "//net/third_party/nss:ssl" ]
}
« no previous file with comments | « build/linux/system.gyp ('k') | tools/gn/secondary/crypto/ssl/flags.gni » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698