summaryrefslogtreecommitdiffstats
path: root/sync/BUILD.gn
diff options
context:
space:
mode:
authortfarina <tfarina@chromium.org>2015-09-22 14:55:36 -0700
committerCommit bot <commit-bot@chromium.org>2015-09-22 22:09:12 +0000
commit3a025353ed7d5639017b9a7f20da47e046f33372 (patch)
tree7e7bda20f161c8054f55dd5a13c4ace248ccfc67 /sync/BUILD.gn
parent1345f98aff020468ce7c60bf7c7d3f8f1b34ba2f (diff)
downloadchromium_src-3a025353ed7d5639017b9a7f20da47e046f33372.zip
chromium_src-3a025353ed7d5639017b9a7f20da47e046f33372.tar.gz
chromium_src-3a025353ed7d5639017b9a7f20da47e046f33372.tar.bz2
GN: Do not use forward_dependent_configs_from variable.
It is deprecated and public_deps should be used instead, which will have the same effect. BUG=None TEST=gn gen out-gn/Release --args='is_debug=false is_component_build=false symbol_level=1' R=brettw@chromium.org Review URL: https://codereview.chromium.org/1361633004 Cr-Commit-Position: refs/heads/master@{#350250}
Diffstat (limited to 'sync/BUILD.gn')
-rw-r--r--sync/BUILD.gn5
1 files changed, 3 insertions, 2 deletions
diff --git a/sync/BUILD.gn b/sync/BUILD.gn
index 34b57b7..27429dc 100644
--- a/sync/BUILD.gn
+++ b/sync/BUILD.gn
@@ -762,12 +762,13 @@ static_library("test_support_sync_fake_server") {
"//base",
"//net",
"//testing/gtest",
- "//third_party/protobuf:protobuf_lite",
"//sync",
"//url",
]
- forward_dependent_configs_from = [ "//third_party/protobuf:protobuf_lite" ]
+ public_deps = [
+ "//third_party/protobuf:protobuf_lite",
+ ]
configs += [ "//build/config/compiler:wexit_time_destructors" ]
}