BUILD.gn 557 B

123456789101112131415161718192021222324252627
  1. # Copyright 2018 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. source_set("search_box") {
  7. sources = [
  8. "search_box_constants.h",
  9. "search_box_view_base.cc",
  10. "search_box_view_base.h",
  11. ]
  12. deps = [
  13. "//ash/public/cpp",
  14. "//ash/strings",
  15. "//base",
  16. "//skia",
  17. "//ui/base",
  18. "//ui/base/ime",
  19. "//ui/events",
  20. "//ui/strings",
  21. "//ui/views",
  22. ]
  23. }