summaryrefslogtreecommitdiff
path: root/chromium/ui/message_center/public/cpp/BUILD.gn
blob: cbe5d10d4fbfb96743a364b0a1c92fa47914e26b (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
# Copyright 2017 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/jumbo.gni")

# C++ headers and sources that can be used outside message_center.
jumbo_component("cpp") {
  output_name = "ui_message_center_cpp"

  sources = [
    "message_center_constants.h",
    "message_center_public_export.h",
    "notification.cc",
    "notification.h",
    "notification_delegate.cc",
    "notification_delegate.h",
    "notification_types.h",
    "notifier_id.cc",
    "notifier_id.h",
  ]

  defines = [ "MESSAGE_CENTER_PUBLIC_IMPLEMENTATION" ]

  deps = [
    "//base",
    "//build:chromeos_buildflags",
    "//skia",
    "//ui/gfx",
    "//ui/strings",
    "//url",
  ]
}