2019-02-04 15:54:55 +00:00
|
|
|
import("//printing/buildflags/buildflags.gni")
|
|
|
|
|
|
|
|
source_set("manifests") {
|
|
|
|
sources = [
|
|
|
|
"//electron/atom/app/manifests.cc",
|
|
|
|
"//electron/atom/app/manifests.h",
|
|
|
|
]
|
|
|
|
|
|
|
|
include_dirs = [ "//electron" ]
|
|
|
|
|
|
|
|
deps = [
|
|
|
|
"//printing/buildflags",
|
2019-02-14 18:26:43 +00:00
|
|
|
"//services/proxy_resolver/public/cpp:manifest",
|
2019-02-04 15:54:55 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
if (enable_basic_printing) {
|
2019-02-14 18:26:43 +00:00
|
|
|
deps += [ "//components/services/pdf_compositor/public/cpp:manifest" ]
|
2019-02-04 15:54:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (enable_print_preview) {
|
2019-02-14 18:26:43 +00:00
|
|
|
deps += [ "//chrome/services/printing/public/cpp:manifest" ]
|
2019-02-04 15:54:55 +00:00
|
|
|
}
|
|
|
|
}
|