only include mac notifications on mac

This commit is contained in:
John Kleinschmidt 2021-03-16 11:41:00 -04:00
Родитель f1bb6be4b9
Коммит 3160e608e2
1 изменённых файлов: 3 добавлений и 1 удалений

Просмотреть файл

@ -619,10 +619,12 @@ source_set("electron_lib") {
"shell/renderer/printing/print_render_frame_helper_delegate.h", "shell/renderer/printing/print_render_frame_helper_delegate.h",
] ]
deps += [ deps += [
"//chrome/services/mac_notifications/public/mojom",
"//chrome/services/printing/public/mojom", "//chrome/services/printing/public/mojom",
"//components/printing/common:mojo_interfaces", "//components/printing/common:mojo_interfaces",
] ]
if (is_mac) {
deps += [ "//chrome/services/mac_notifications/public/mojom" ]
}
} }
if (enable_electron_extensions) { if (enable_electron_extensions) {