Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(100)

Unified Diff: remoting/BUILD.gn

Issue 1009883002: Fix unresolved gn dependencies when enable_configuration_policy=false (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Patch gn-formatted Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | remoting/host/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/BUILD.gn
diff --git a/remoting/BUILD.gn b/remoting/BUILD.gn
index 2fcdf6487e550c8be536748adb299ddbfbb3acb3..6c5ffac5b2d788a6f6968c571a40bab4913205d3 100644
--- a/remoting/BUILD.gn
+++ b/remoting/BUILD.gn
@@ -61,7 +61,6 @@ source_set("test_support") {
deps = [
"//base",
- "//components/policy:test_support",
"//net",
"//remoting/base",
"//remoting/client",
@@ -72,6 +71,10 @@ source_set("test_support") {
"//testing/gtest",
]
+ if (enable_configuration_policy) {
+ deps += [ "//components/policy:test_support" ]
+ }
+
if (enable_remoting_host) {
deps += [ "//remoting/host:test_support" ]
}
« no previous file with comments | « no previous file | remoting/host/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698