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

Unified Diff: components/policy/BUILD.gn

Issue 1393953003: Make chrome/common pass "gn check" (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 2 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 | « chrome/third_party/mozilla_security_manager/BUILD.gn ('k') | extensions/common/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/policy/BUILD.gn
diff --git a/components/policy/BUILD.gn b/components/policy/BUILD.gn
index 7b5cca1ea94f7acf90e443871a189dd0d85df017..b6274b8b1777364a2c52b6821271623c3bc8fd32 100644
--- a/components/policy/BUILD.gn
+++ b/components/policy/BUILD.gn
@@ -24,35 +24,35 @@ import("//tools/grit/grit_rule.gni")
# dependencies (GN will do the right thing without this extra target).
if (is_component_build) {
component("policy_component") {
- deps = [
+ public_deps = [
"//components/policy/core/browser",
"//components/policy/core/common",
]
}
group("policy_component_browser") {
- deps = [
+ public_deps = [
":policy_component",
]
}
group("policy_component_common") {
- deps = [
+ public_deps = [
":policy_component",
]
}
} else { # Compile to separate libraries.
group("policy_component") {
- deps = [
+ public_deps = [
":policy_component_browser",
":policy_component_common",
]
}
component("policy_component_browser") {
- deps = [
+ public_deps = [
"//components/policy/core/browser",
]
}
component("policy_component_common") {
- deps = [
+ public_deps = [
"//components/policy/core/common",
]
}
« no previous file with comments | « chrome/third_party/mozilla_security_manager/BUILD.gn ('k') | extensions/common/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698