blob: 0c35dc62d99e95e87ca90fe46431dd5499196e42 [file] [log] [blame]
# Copyright 2019 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/config/features.gni")
import("//printing/buildflags/buildflags.gni")
assert(is_chromeos, "Non-Chrome-OS builds must not depend on this")
source_set("cpp") {
sources = [
"type_conversions.cc",
"type_conversions.h",
]
deps = [
"//base",
]
if (use_cups) {
configs += [ "//printing:cups" ]
sources += [
"cups_util.cc",
"cups_util.h",
"ipp_messages.cc",
"ipp_messages.h",
]
public_deps = [
"//chrome/services/cups_ipp_parser/public/cpp",
"//printing",
]
}
}
source_set("manifest") {
sources = [
"manifest.cc",
"manifest.h",
]
deps = [
"//base",
"//chrome/services/cups_proxy/public/mojom",
"//services/service_manager/public/cpp",
]
}