BUILD.gn 857 B

1234567891011121314151617181920212223242526272829303132
  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, "Firware update App is ash-chrome only")
  6. static_library("firmware_update_ui") {
  7. sources = [
  8. "firmware_update_app_ui.cc",
  9. "firmware_update_app_ui.h",
  10. "url_constants.cc",
  11. "url_constants.h",
  12. ]
  13. deps = [
  14. "//ash/components/fwupd:fwupd",
  15. "//ash/webui/firmware_update_ui/mojom",
  16. "//ash/webui/resources:firmware_update_app_resources",
  17. "//chromeos/strings/",
  18. "//content/public/browser",
  19. "//dbus",
  20. "//ui/resources:webui_generated_resources_grd_grit",
  21. "//ui/web_dialogs:web_dialogs",
  22. "//ui/webui",
  23. ]
  24. }
  25. group("closure_compile") {
  26. deps = [ "resources:closure_compile" ]
  27. }