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

Unified Diff: components/metrics/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 | « components/invalidation/BUILD.gn ('k') | components/omnibox/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/metrics/BUILD.gn
diff --git a/components/metrics/BUILD.gn b/components/metrics/BUILD.gn
index 685788c6b0178642420c9b722f99e3b925829443..617c691bdc43762d4227fa76e23e559d965a0a2b 100644
--- a/components/metrics/BUILD.gn
+++ b/components/metrics/BUILD.gn
@@ -44,14 +44,14 @@ source_set("metrics") {
"persisted_logs.h",
]
+ public_deps = [
+ "//components/metrics/proto",
+ ]
deps = [
"//base",
- "//components/metrics/proto",
"//components/variations",
"//third_party/zlib",
]
-
- forward_dependent_configs_from = [ "//components/metrics/proto" ]
}
# GYP version: components/metrics.gypi:metrics_gpu
@@ -61,12 +61,12 @@ source_set("gpu") {
"gpu/gpu_metrics_provider.h",
]
- deps = [
+ public_deps = [
":metrics",
+ ]
+ deps = [
"//gpu/config",
]
-
- forward_dependent_configs_from = [ ":metrics" ]
}
# GYP version: components/metrics.gypi:metrics_net
@@ -82,12 +82,12 @@ static_library("net") {
"net/wifi_access_point_info_provider_chromeos.h",
]
- deps = [
+ public_deps = [
":metrics",
+ ]
+ deps = [
"//net",
]
-
- forward_dependent_configs_from = [ ":metrics" ]
}
# GYP version: components/metrics.gypi:metrics_profiler
@@ -100,13 +100,13 @@ source_set("profiler") {
"profiler/tracking_synchronizer_observer.h",
]
- deps = [
+ public_deps = [
":metrics",
+ ]
+ deps = [
"//base",
"//content/public/browser",
]
-
- forward_dependent_configs_from = [ ":metrics" ]
}
# GYP version: components/metrics.gypi:metrics_test_support
@@ -116,11 +116,9 @@ static_library("test_support") {
"test_metrics_service_client.h",
]
- deps = [
+ public_deps = [
":metrics",
]
-
- forward_dependent_configs_from = [ ":metrics" ]
}
# TODO(GYP): metrics_chromeos
« no previous file with comments | « components/invalidation/BUILD.gn ('k') | components/omnibox/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698