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

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

Issue 231673006: Add SSL support to the GN build (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fixes for minimal Created 6 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 | « tools/gn/secondary/crypto/BUILD.gn ('k') | tools/gn/secondary/net/BUILD.gn » ('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
deleted file mode 100644
index 42e007889b904570d318c40241a7337006516f09..0000000000000000000000000000000000000000
--- a/tools/gn/secondary/crypto/ssl/BUILD.gn
+++ /dev/null
@@ -1,28 +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.
-
-import("//build/config/crypto.gni")
-import("//build/config/linux/pkg_config.gni")
-
-config("ssl_preprocessor_flags") {
- if (use_openssl) {
- defines = [ "USE_OPENSSL" ]
- } else if (use_nss) {
- defines = [ "USE_NSS" ]
- }
-}
-
-# This meta-target will include the SSL library according to the build flags.
-group("metassl") {
- direct_dependent_configs = [ ":ssl_preprocessor_flags" ]
-
- if (use_openssl) {
- assert(is_linux)
- deps = [ "//third_party/openssl" ]
- } else {
- deps = [ "//net/third_party/nss:ssl" ]
- }
-
- forward_dependent_configs_from = deps
-}
« no previous file with comments | « tools/gn/secondary/crypto/BUILD.gn ('k') | tools/gn/secondary/net/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698