Skip to content

Commit

Permalink
Fix cloud_print mojom deps
Browse files Browse the repository at this point in the history
Need to be public_deps to avoid build flake

TBR=jcivelli@chromium.org
TBR=vitalybuka@chromium.org

Bug: None
Change-Id: Ic1ee78c61b75f39d52bbda47c5d6b036cb0fdca4
Reviewed-on: https://chromium-review.googlesource.com/706948
Commit-Queue: Ken Rockot <rockot@chromium.org>
Reviewed-by: Jay Civelli <jcivelli@chromium.org>
Reviewed-by: Ken Rockot <rockot@chromium.org>
Cr-Commit-Position: refs/heads/master@{#507463}
  • Loading branch information
krockot authored and Commit Bot committed Oct 9, 2017
1 parent 314d62c commit 85c2c87
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion chrome/browser/BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -3177,7 +3177,7 @@ split_static_library("browser") {
"service_process/service_process_control.h",
"service_process/service_process_control_mac.mm",
]
deps += [ "//chrome/common:service_process_mojom" ]
public_deps += [ "//chrome/common:service_process_mojom" ]
} else {
# Partial-only printing support.
sources += [
Expand Down
5 changes: 4 additions & 1 deletion chrome/service/BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,6 @@ static_library("service") {
"//base",
"//chrome:strings",
"//chrome/common",
"//chrome/common:service_process_mojom",
"//components/cloud_devices/common",
"//components/data_use_measurement/core",
"//components/network_session_configurator/browser",
Expand All @@ -68,6 +67,10 @@ static_library("service") {
"//third_party/webrtc_overrides",
]

public_deps = [
"//chrome/common:service_process_mojom",
]

if (use_cups && !is_chromeos) {
sources += [ "cloud_print/print_system_cups.cc" ]
configs += [ "//printing:cups" ]
Expand Down

0 comments on commit 85c2c87

Please sign in to comment.