27 lines
908 B
Plaintext
27 lines
908 B
Plaintext
# Copyright (c) 2022 The Brave Authors. All rights reserved.
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
|
# You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
brave_browser_notifications_sources = [
|
|
"//brave/browser/notifications/ads_notification_handler.cc",
|
|
"//brave/browser/notifications/ads_notification_handler.h",
|
|
]
|
|
|
|
brave_browser_notifications_deps = [
|
|
"//base",
|
|
"//chrome/browser/notifications",
|
|
"//third_party/abseil-cpp:absl",
|
|
"//url",
|
|
]
|
|
|
|
if (is_android) {
|
|
brave_browser_notifications_sources += [
|
|
"//brave/browser/notifications/brave_notification_platform_bridge_helper_android.cc",
|
|
"//brave/browser/notifications/brave_notification_platform_bridge_helper_android.h",
|
|
]
|
|
|
|
brave_browser_notifications_deps +=
|
|
[ "//brave/android:brave_android_java_enums_srcjar" ]
|
|
}
|