diff --git a/.gn b/.gn index 430c82c72f07f7..c7b6338315b913 100644 --- a/.gn +++ b/.gn @@ -79,7 +79,6 @@ no_check_targets = [ "//chrome/install_static:*", # 4 errors "//chrome/notification_helper:*", # 4 errors "//chrome/renderer:*", # 42 errors - "//chrome/service:*", # 4 errors "//chrome/services/cups_proxy/public/cpp:*", # 2 errors "//chrome/services/cups_proxy:*", # 6 errors "//chrome/services/file_util/public/cpp:*", # 13 errors diff --git a/chrome/service/BUILD.gn b/chrome/service/BUILD.gn index 6b5b42bd287388..1d803c9d96d751 100644 --- a/chrome/service/BUILD.gn +++ b/chrome/service/BUILD.gn @@ -61,10 +61,13 @@ static_library("service") { "//chrome/common", "//chrome/services/printing/public/mojom", "//components/cloud_devices/common", + "//components/language/core/browser", + "//components/language/core/common", "//components/network_session_configurator/browser", "//components/printing/common", "//google_apis", "//jingle:notifier", + "//mojo/core/embedder", "//mojo/public/cpp/platform", "//mojo/public/cpp/system", "//net", @@ -85,5 +88,6 @@ static_library("service") { "service_utility_process_host.h", "service_utility_process_host_receiver_bindings.cc", ] + deps += [ "//sandbox/win:sandbox" ] } }