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

ash / webui / print_preview_cros / backend / BUILD.gn [blame]

# 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",
  ]
}