summaryrefslogtreecommitdiffstats
path: root/base
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 /base
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 'base')
-rw-r--r--base/allocator/BUILD.gn2
-rw-r--r--base/test/BUILD.gn2
2 files changed, 2 insertions, 2 deletions
diff --git a/base/allocator/BUILD.gn b/base/allocator/BUILD.gn
index 7603d88..510c3d3 100644
--- a/base/allocator/BUILD.gn
+++ b/base/allocator/BUILD.gn
@@ -184,7 +184,7 @@ if (!is_android) {
"//build/config/win:nominmax",
]
- direct_dependent_configs = [ ":nocmt" ]
+ public_configs = [ ":nocmt" ]
deps += [
":prep_libc",
diff --git a/base/test/BUILD.gn b/base/test/BUILD.gn
index c2a825e..f7a6001 100644
--- a/base/test/BUILD.gn
+++ b/base/test/BUILD.gn
@@ -148,7 +148,7 @@ source_set("test_support_perf") {
"//testing/gtest",
]
- direct_dependent_configs = [ ":perf_test_config" ]
+ public_configs = [ ":perf_test_config" ]
}
source_set("run_all_unittests") {