summaryrefslogtreecommitdiff
path: root/chromium/components/services/pdf_compositor/public/cpp/BUILD.gn
blob: 414da31496660ea2b9e213c129fac3dc428a4534 (plain)
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
29
30
31
32
33
34
# Copyright 2017 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("//mojo/public/tools/bindings/mojom.gni")

source_set("factory") {
  sources = [
    "pdf_compositor_service_factory.cc",
    "pdf_compositor_service_factory.h",
  ]

  deps = [
    "//components/services/pdf_compositor/",
    "//content/public/common",
    "//content/public/utility",
  ]

  public_deps = [
    "//components/services/pdf_compositor/public/interfaces",
    "//services/service_manager/public/cpp",
  ]
}

source_set("utils") {
  sources = [
    "pdf_service_mojo_utils.cc",
    "pdf_service_mojo_utils.h",
  ]

  public_deps = [
    "//mojo/public/cpp/system:system",
  ]
}