mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 22:36:09 +03:00
35 lines
789 B
Plaintext
35 lines
789 B
Plaintext
|
# 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 = [
|
||
|
"features.cc",
|
||
|
"features.h",
|
||
|
"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",
|
||
|
"//skia",
|
||
|
"//ui/gfx",
|
||
|
"//ui/strings",
|
||
|
"//url",
|
||
|
]
|
||
|
}
|