# Copyright 2024 The Chromium Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
import("//build/config/chromeos/ui_mode.gni")
assert(is_chromeos_ash, "Non-ChromeOS builds cannot depend on //ash")
static_library("backend") {
sources = [
"destination_provider.cc",
"destination_provider.h",
"pdf_printer_handler.cc",
"pdf_printer_handler.h",
"print_preview_pdf_store.cc",
"print_preview_pdf_store.h",
]
deps = [
"//ash/webui/print_preview_cros/mojom",
"//components/cloud_devices/common:common",
"//printing:printing",
"//printing:printing_base",
"//printing/backend",
"//printing/mojom:mojom",
"//ui/gfx/geometry:geometry",
]
}