// Copyright 2023 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef PRINTING_PRINT_JOB_CONSTANTS_CUPS_H_ #define PRINTING_PRINT_JOB_CONSTANTS_CUPS_H_ #include <string_view> #include "base/component_export.h" #include "build/build_config.h" #include "printing/buildflags/buildflags.h" #if BUILDFLAG(IS_MAC) #include "base/containers/span.h" #endif #if !BUILDFLAG(USE_CUPS) #error "CUPS must be enabled." #endif printing // namespace printing #endif // PRINTING_PRINT_JOB_CONSTANTS_CUPS_H_