BUILD.gn 970 B

123456789101112131415161718192021222324252627282930313233
  1. # Copyright 2020 The Chromium Authors. All rights reserved.
  2. # Use of this source code is governed by a BSD-style license that can be
  3. # found in the LICENSE file.
  4. import("//build/config/chromeos/ui_mode.gni")
  5. assert(is_chromeos_ash, "Non-ChromeOS builds cannot depend on //ash")
  6. static_library("connectivity_diagnostics") {
  7. sources = [
  8. "connectivity_diagnostics_ui.cc",
  9. "connectivity_diagnostics_ui.h",
  10. "url_constants.cc",
  11. "url_constants.h",
  12. ]
  13. deps = [
  14. "//ash/webui/network_ui:network_diagnostics_resource_provider",
  15. "//ash/webui/network_ui:network_health_resource_provider",
  16. "//ash/webui/resources:connectivity_diagnostics_resources",
  17. "//ash/webui/web_applications",
  18. "//chromeos/services/network_health/public/mojom:mojom",
  19. "//chromeos/strings/",
  20. "//content/public/browser",
  21. "//ui/base",
  22. "//ui/resources",
  23. "//ui/webui",
  24. ]
  25. }
  26. group("closure_compile") {
  27. deps = [ "resources:closure_compile_module" ]
  28. }