blob: 476c9345b28c1093050e7e900a0fd401ecb8a389 [file] [log] [blame]
# Copyright 2020 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.
if (is_android) {
import("//build/config/android/rules.gni")
}
source_set("announcement_notification") {
sources = [
"announcement_notification_service.cc",
"announcement_notification_service.h",
"announcement_notification_service_factory.cc",
"announcement_notification_service_factory.h",
"empty_announcement_notification_service.cc",
"empty_announcement_notification_service.h",
]
# TODO(xingliu): Move code depends on //chrome/browser out of this module.
deps = [
"//base",
"//chrome/app:generated_resources",
"//components/keyed_service/content",
"//components/prefs:prefs",
"//skia",
"//ui/base",
"//url",
]
if (is_android) {
sources += [
"announcement_notification_delegate_android.cc",
"announcement_notification_delegate_android.h",
]
} else {
sources += [
"announcement_notification_delegate.cc",
"announcement_notification_delegate.h",
"announcement_notification_handler.cc",
"announcement_notification_handler.h",
]
deps += [ "//chrome/browser/ui" ]
}
}
source_set("unit_tests") {
testonly = true
sources = [ "announcement_notification_service_unittest.cc" ]
deps = [
":announcement_notification",
"//build:chromeos_buildflags",
"//chrome/test:test_support",
"//skia",
"//testing/gmock",
"//testing/gtest",
]
}