BUILD.gn 781 B

12345678910111213141516171819202122232425262728293031
  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, "Print Management is ash-chrome only")
  6. static_library("print_management") {
  7. sources = [
  8. "print_management_ui.cc",
  9. "print_management_ui.h",
  10. "url_constants.cc",
  11. "url_constants.h",
  12. ]
  13. deps = [
  14. "//ash/webui/print_management/mojom",
  15. "//ash/webui/resources:print_management_resources",
  16. "//ash/webui/web_applications",
  17. "//chromeos/strings/",
  18. "//content/public/browser",
  19. "//ui/base",
  20. "//ui/resources",
  21. "//ui/webui",
  22. ]
  23. }
  24. group("closure_compile") {
  25. deps = [ "resources:closure_compile_module" ]
  26. }