mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 22:36:09 +03:00
29 lines
896 B
Plaintext
29 lines
896 B
Plaintext
|
# Copyright 2016 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("//third_party/blink/renderer/modules/modules.gni")
|
||
|
|
||
|
blink_modules_sources("notifications") {
|
||
|
sources = [
|
||
|
"notification.cc",
|
||
|
"notification.h",
|
||
|
"notification_data.cc",
|
||
|
"notification_data.h",
|
||
|
"notification_event.cc",
|
||
|
"notification_event.h",
|
||
|
"notification_image_loader.cc",
|
||
|
"notification_image_loader.h",
|
||
|
"notification_manager.cc",
|
||
|
"notification_manager.h",
|
||
|
"notification_resources_loader.cc",
|
||
|
"notification_resources_loader.h",
|
||
|
"service_worker_global_scope_notifications.h",
|
||
|
"service_worker_registration_notifications.cc",
|
||
|
"service_worker_registration_notifications.h",
|
||
|
]
|
||
|
deps = [
|
||
|
"//services/resource_coordinator/public/cpp:resource_coordinator_cpp",
|
||
|
]
|
||
|
}
|