BUILD.gn 608 B

123456789101112131415161718192021222324252627
  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, "Non-ChromeOS builds cannot depend on //ash")
  6. static_library("common") {
  7. }
  8. static_library("keyboard_diagram_strings") {
  9. sources = [
  10. "keyboard_diagram_strings.cc",
  11. "keyboard_diagram_strings.h",
  12. ]
  13. deps = [
  14. "//chromeos/strings/",
  15. "//content/public/browser",
  16. "//ui/base",
  17. ]
  18. }
  19. group("closure_compile") {
  20. deps = [ "resources:closure_compile" ]
  21. }