| # Copyright 2015 The Chromium Authors |
| # Use of this source code is governed by a BSD-style license that can be |
| # found in the LICENSE file. |
| |
| import("//components/enterprise/buildflags/buildflags.gni") |
| |
| static_library("browser") { |
| sources = [ |
| "print_composite_client.cc", |
| "print_composite_client.h", |
| "print_manager.cc", |
| "print_manager.h", |
| "print_manager_utils.cc", |
| "print_manager_utils.h", |
| ] |
| |
| public_deps = [ "//content/public/browser" ] |
| |
| deps = [ |
| "//base", |
| "//components/crash/core/common", |
| "//components/discardable_memory/service", |
| "//components/enterprise/buildflags", |
| "//components/printing/common", |
| "//components/printing/common:mojo_interfaces", |
| "//components/services/print_compositor/public/cpp", |
| "//components/services/print_compositor/public/mojom", |
| "//components/site_isolation", |
| "//components/strings:components_strings_grit", |
| "//printing", |
| "//printing/backend", |
| "//printing/common", |
| "//ui/base", |
| "//ui/gfx/geometry", |
| ] |
| |
| if (enterprise_watermark) { |
| deps += [ "//components/enterprise/watermarking/content" ] |
| } |
| } |