diff options
author | Brett Wilson <brettw@chromium.org> | 2014-09-23 16:41:46 -0700 |
---|---|---|
committer | Brett Wilson <brettw@chromium.org> | 2014-09-23 23:42:24 +0000 |
commit | e5389527466d390b5653724a069008b9f1edcd5c (patch) | |
tree | b801a034992eec680db3afbfae5ed6dd6394ca7e /google_apis/gcm | |
parent | 2261d6bc3936efca1a9387085d2ebbf367d38df4 (diff) | |
download | chromium_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 'google_apis/gcm')
-rw-r--r-- | google_apis/gcm/BUILD.gn | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/google_apis/gcm/BUILD.gn b/google_apis/gcm/BUILD.gn index 9d140f3..d21a057 100644 --- a/google_apis/gcm/BUILD.gn +++ b/google_apis/gcm/BUILD.gn @@ -45,16 +45,16 @@ component("gcm") { defines = [ "GCM_IMPLEMENTATION" ] - deps = [ + public_deps = [ ":proto", + ] + deps = [ "//base", "//base/third_party/dynamic_annotations", "//net", "//third_party/leveldatabase", "//url", ] - - forward_dependent_configs_from = [ ":proto" ] } proto_library("proto") { @@ -83,13 +83,13 @@ static_library("test_support") { "monitoring/fake_gcm_stats_recorder.h", ] - deps = [ + public_deps = [ ":gcm", + ] + deps = [ "//base", "//testing/gtest", ] - - forward_dependent_configs_from = [ ":gcm" ] } # A standalone MCS (mobile connection server) client. |