BUILD.gn 885 B

1234567891011121314151617181920212223242526272829303132333435
  1. # Copyright 2021 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, "Shimless RMA is ash-chrome only")
  6. static_library("shimless_rma") {
  7. sources = [
  8. "shimless_rma.cc",
  9. "shimless_rma.h",
  10. "url_constants.cc",
  11. "url_constants.h",
  12. ]
  13. deps = [
  14. "//ash/constants",
  15. "//ash/public/cpp:cpp",
  16. "//ash/webui/resources:shimless_rma_resources",
  17. "//ash/webui/shimless_rma/backend",
  18. "//ash/webui/shimless_rma/mojom",
  19. "//chromeos/strings/",
  20. "//content/public/browser",
  21. "//dbus",
  22. "//ui/chromeos:chromeos",
  23. "//ui/chromeos/strings:strings_provider",
  24. "//ui/resources",
  25. "//ui/web_dialogs",
  26. ]
  27. }
  28. group("closure_compile") {
  29. deps = [ "resources:closure_compile_module" ]
  30. }