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

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

Issue 595073002: Replace forward_dependent_configs with public_deps (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 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/BUILD.gn ('k') | ppapi/BUILD.gn » ('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
index 7f3ad2ca834640aba399ee7ef15520ad2178cbbf..67c5851d5b0fd499e176fda610814d19fa2b84d1 100644
--- a/net/third_party/nss/ssl/BUILD.gn
+++ b/net/third_party/nss/ssl/BUILD.gn
@@ -57,7 +57,7 @@ component("libssl") {
"bodge/secitem_array.c",
]
- direct_dependent_configs = [ ":ssl_config" ]
+ public_configs = [ ":ssl_config" ]
cflags = []
defines = [
@@ -88,7 +88,7 @@ component("libssl") {
# Must be after ssl_config since we want our SSL headers to take
# precedence.
- direct_dependent_configs += [
+ public_configs += [
"//third_party/nss:system_nss_no_ssl_config"
]
} else if (is_mac) {
@@ -114,11 +114,10 @@ component("libssl") {
sources -= [
"bodge/secitem_array.c",
]
- deps = [
+ public_deps = [
"//third_party/nss:nspr",
"//third_party/nss:nss",
]
- forward_dependent_configs_from = deps
}
if (is_clang) {
« no previous file with comments | « net/BUILD.gn ('k') | ppapi/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698