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 /content/test/BUILD.gn | |
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 'content/test/BUILD.gn')
-rw-r--r-- | content/test/BUILD.gn | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/content/test/BUILD.gn b/content/test/BUILD.gn index 3acecb0..313c9b7 100644 --- a/content/test/BUILD.gn +++ b/content/test/BUILD.gn @@ -15,6 +15,7 @@ content_tests_gypi_values = exec_script( # GYP version //content/content_tests.gypi:test_support_content static_library("test_support") { testonly = true + public_deps = [] deps = [ "//cc/blink", "//content/public/app:both", @@ -42,6 +43,9 @@ static_library("test_support") { sources = rebase_path(content_tests_gypi_values.test_support_content_sources, ".", "//content") + public_deps += [ + "//third_party/WebKit/public:blink", + ] deps += [ "//content/browser/speech/proto", "//content/public/child:child_sources", @@ -58,16 +62,11 @@ static_library("test_support") { "//ppapi:ppapi_unittest_shared", "//storage/browser", "//storage/common", - "//third_party/WebKit/public:blink", "//ui/surface", "//v8", "//webkit/common/gpu", ] - forward_dependent_configs_from = [ - "//third_party/WebKit/public:blink", - ] - if (enable_plugins) { deps += [ "//content/ppapi_plugin" ] } |