blob: a3d25483f35d6956ee0d869c9bfc361f06dddf4d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
# Copyright 2022 The Chromium Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
import("//printing/buildflags/buildflags.gni")
assert(enable_basic_printing)
static_library("headless") {
sources = [
"headless_print_manager.cc",
"headless_print_manager.h",
]
deps = [
"//base",
"//components/printing/browser",
"//components/printing/browser/print_to_pdf",
"//printing",
"//printing/buildflags",
"//printing/mojom",
]
public_deps = [ "//components/printing/common:mojo_interfaces" ]
}
|