blob: c6f601d8eca6b34878347ab43fe33b2a00393500 [file] [log] [blame]
# Copyright 2017 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.
source_set("lib") {
sources = [
"pdf_nup_converter.cc",
"pdf_nup_converter.h",
"pdf_to_pwg_raster_converter.cc",
"pdf_to_pwg_raster_converter.h",
"printing_service.cc",
"printing_service.h",
]
deps = [
"//base",
"//components/crash/core/common:crash_key",
"//components/pwg_encoder",
"//mojo/public/cpp/bindings",
]
public_deps = [
"//chrome/services/printing/public/mojom",
"//services/service_manager/public/cpp",
]
if (is_win) {
sources += [
"pdf_to_emf_converter.cc",
"pdf_to_emf_converter.h",
"pdf_to_emf_converter_factory.cc",
"pdf_to_emf_converter_factory.h",
]
deps += [ "//skia" ]
}
}