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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
|
# Copyright 2015 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("//build/buildflag_header.gni")
import("//build/config/jumbo.gni")
if (is_chromeos) {
import("//printing/backend/tools/code_generator.gni")
}
declare_args() {
# Enable print media localization only on the platforms that support CUPS IPP
# (ChromeOS and macOS for now). The localization expects media vendor IDs
# uniquely generated by CUPS IPP.
enable_print_media_l10n = is_chromeos || is_mac
}
buildflag_header("printing_buildflags") {
header = "printing_buildflags.h"
flags = [ "PRINT_MEDIA_L10N_ENABLED=$enable_print_media_l10n" ]
}
if (is_chromeos) {
localization_map_path = "$target_gen_dir/ipp_l10n.cc"
ipp_code_generate("ipp_l10n_generate") {
outputs = [ localization_map_path ]
args = [ "--localization-map=" +
rebase_path(localization_map_path, root_build_dir) ]
}
}
jumbo_static_library("browser") {
sources = [
"print_composite_client.cc",
"print_composite_client.h",
"print_manager.cc",
"print_manager.h",
"print_manager_utils.cc",
"print_manager_utils.h",
"printer_capabilities.cc",
"printer_capabilities.h",
"service_sandbox_type.h",
]
public_deps = [
":printing_buildflags",
"//content/public/browser",
]
deps = [
"//base",
"//components/crash/core/common",
"//components/discardable_memory/service",
"//components/printing/common",
"//components/printing/common:mojo_interfaces",
"//components/services/print_compositor/public/cpp",
"//components/services/print_compositor/public/mojom",
"//components/site_isolation",
"//components/strings:components_strings_grit",
"//printing",
"//printing/common:common",
"//ui/base",
"//ui/gfx/geometry",
]
if (is_mac) {
sources += [
"printer_capabilities_mac.h",
"printer_capabilities_mac.mm",
]
}
if (is_chromeos) {
deps += [ ":ipp_l10n_generate" ]
sources += [
"ipp_l10n.h",
localization_map_path,
]
}
if (enable_print_media_l10n) {
sources += [
"print_media_l10n.cc",
"print_media_l10n.h",
]
}
}
source_set("unit_tests") {
testonly = true
sources = [ "printer_capabilities_unittest.cc" ]
deps = [
"//base",
"//components/printing/browser",
"//content/test:test_support",
"//printing:test_support",
"//testing/gtest",
]
if (is_mac) {
sources += [ "printer_capabilities_mac_unittest.mm" ]
}
if (enable_print_media_l10n) {
sources += [ "print_media_l10n_unittest.cc" ]
}
}
|