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

Unified Diff: build/secondary/third_party/nss/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 | « build/secondary/third_party/libsrtp/BUILD.gn ('k') | build/secondary/third_party/openmax_dl/dl/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/secondary/third_party/nss/BUILD.gn
diff --git a/build/secondary/third_party/nss/BUILD.gn b/build/secondary/third_party/nss/BUILD.gn
index 9c73e95e67b4a6921b4ae900e9067a4a9f9e34f2..31ed5a956792723c5670dea24343972e99275734 100644
--- a/build/secondary/third_party/nss/BUILD.gn
+++ b/build/secondary/third_party/nss/BUILD.gn
@@ -205,7 +205,7 @@ if (is_linux) {
"nspr/pr/src/threads/prtpd.c",
]
- direct_dependent_configs = [ ":nspr_config" ]
+ public_configs = [ ":nspr_config" ]
configs -= [
"//build/config/compiler:chromium_code",
@@ -348,10 +348,10 @@ if (is_linux) {
"nss/lib/nss/nssver.c",
]
- deps = [ ":nss_static" ]
+ public_deps = [ ":nss_static" ]
if (include_nss_root_certs) {
- deps += [ ":nssckbi" ]
+ public_deps += [ ":nssckbi" ]
}
if (component_mode == "shared_library") {
@@ -362,8 +362,6 @@ if (is_linux) {
ldflags = [ rebase_path("nss/exports_win.def", root_build_dir) ]
}
}
-
- forward_dependent_configs_from = deps
}
config("nssckbi_config") {
@@ -441,12 +439,11 @@ if (is_linux) {
configs += [ "//build/config/compiler:no_chromium_code" ]
include_dirs = [ "nss/lib/ckfw" ]
- direct_dependent_configs = [ ":nssckbi_config" ]
+ public_configs = [ ":nssckbi_config" ]
- deps = [
+ public_deps = [
":nss_static",
]
- forward_dependent_configs_from = deps
}
config("nss_static_config") {
@@ -841,7 +838,7 @@ if (is_linux) {
]
}
configs += [ "//build/config/compiler:no_chromium_code" ]
- direct_dependent_configs = [ ":nss_static_config" ]
+ public_configs = [ ":nss_static_config" ]
cflags = []
@@ -1148,12 +1145,13 @@ if (is_linux) {
]
}
+ public_deps = [
+ ":nspr",
+ ]
deps = [
":nspr",
"//third_party/sqlite",
]
-
- forward_dependent_configs_from = [ ":nspr" ]
}
} # Windows/Mac/iOS.
« no previous file with comments | « build/secondary/third_party/libsrtp/BUILD.gn ('k') | build/secondary/third_party/openmax_dl/dl/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698