summaryrefslogtreecommitdiff
path: root/chromium/ash/app_menu/BUILD.gn
blob: 24c6f7e2917c130b38ec2caf27894205b3657d68 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# Copyright 2018 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.

import("//build/config/ui.gni")

assert(is_chromeos)

component("app_menu") {
  sources = [
    "app_menu_model_adapter.cc",
    "app_menu_model_adapter.h",
    "notification_item_view.cc",
    "notification_item_view.h",
    "notification_menu_controller.cc",
    "notification_menu_controller.h",
    "notification_menu_header_view.cc",
    "notification_menu_header_view.h",
    "notification_menu_view.cc",
    "notification_menu_view.h",
    "notification_overflow_view.cc",
    "notification_overflow_view.h",
  ]

  defines = [ "APP_MENU_IMPLEMENTATION" ]

  deps = [
    "//ash/public/cpp",
    "//base",
    "//ui/gfx",
    "//ui/gfx/geometry",
    "//ui/message_center",
    "//ui/strings:ui_strings_grit",
    "//ui/views",
  ]
}