BUILD.gn 578 B

1234567891011121314151617181920212223
  1. # Copyright 2022 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)
  6. static_library("guest_os_installer") {
  7. sources = [
  8. "guest_os_installer_ui.cc",
  9. "guest_os_installer_ui.h",
  10. "url_constants.cc",
  11. "url_constants.h",
  12. ]
  13. deps = [
  14. "//ash/webui/guest_os_installer/mojom",
  15. "//ash/webui/resources:guest_os_installer_resources",
  16. "//content/public/browser",
  17. "//ui/web_dialogs",
  18. ]
  19. }