summaryrefslogtreecommitdiffstats
path: root/components/metrics
diff options
context:
space:
mode:
authorBrett Wilson <brettw@chromium.org>2014-09-23 16:41:46 -0700
committerBrett Wilson <brettw@chromium.org>2014-09-23 23:42:24 +0000
commite5389527466d390b5653724a069008b9f1edcd5c (patch)
treeb801a034992eec680db3afbfae5ed6dd6394ca7e /components/metrics
parent2261d6bc3936efca1a9387085d2ebbf367d38df4 (diff)
downloadchromium_src-e5389527466d390b5653724a069008b9f1edcd5c.zip
chromium_src-e5389527466d390b5653724a069008b9f1edcd5c.tar.gz
chromium_src-e5389527466d390b5653724a069008b9f1edcd5c.tar.bz2
Replace forward_dependent_configs with public_deps
This is the new name. It has the same meaning but additionally with a "you can use the headers" permission. Rename direct_dependent_configs to public_configs. This is the new name with identical meaning. TBR=jamesr Review URL: https://codereview.chromium.org/595073002 Cr-Commit-Position: refs/heads/master@{#296302}
Diffstat (limited to 'components/metrics')
-rw-r--r--components/metrics/BUILD.gn28
1 files changed, 13 insertions, 15 deletions
diff --git a/components/metrics/BUILD.gn b/components/metrics/BUILD.gn
index 685788c..617c691 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