BUILD.gn 922 B

123456789101112131415161718192021222324252627282930313233343536
  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. component("app_menu") {
  7. sources = [
  8. "app_menu_model_adapter.cc",
  9. "app_menu_model_adapter.h",
  10. "notification_item_view.cc",
  11. "notification_item_view.h",
  12. "notification_menu_controller.cc",
  13. "notification_menu_controller.h",
  14. "notification_menu_header_view.cc",
  15. "notification_menu_header_view.h",
  16. "notification_menu_view.cc",
  17. "notification_menu_view.h",
  18. "notification_overflow_view.cc",
  19. "notification_overflow_view.h",
  20. ]
  21. defines = [ "APP_MENU_IMPLEMENTATION" ]
  22. deps = [
  23. "//ash/public/cpp",
  24. "//base",
  25. "//ui/gfx",
  26. "//ui/gfx/geometry",
  27. "//ui/message_center",
  28. "//ui/strings:ui_strings_grit",
  29. "//ui/views",
  30. ]
  31. }