Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1895)

Unified Diff: components/printing/service/BUILD.gn

Issue 2832633002: Add PDF compositor service (Closed)
Patch Set: rebase Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/utility/chrome_content_utility_client.cc ('k') | components/printing/service/DEPS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/printing/service/BUILD.gn
diff --git a/components/printing/service/BUILD.gn b/components/printing/service/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..077ee2813b083694428db8fb504457f3782da5c0
--- /dev/null
+++ b/components/printing/service/BUILD.gn
@@ -0,0 +1,35 @@
+# 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("//services/service_manager/public/cpp/service.gni")
+import("//services/service_manager/public/service_manifest.gni")
+
+static_library("service") {
+ sources = [
+ "pdf_compositor_impl.cc",
+ "pdf_compositor_impl.h",
+ "pdf_compositor_service.cc",
+ "pdf_compositor_service.h",
+ ]
+
+ deps = [
+ "//base",
+ "//components/discardable_memory/client",
+ "//components/discardable_memory/public/interfaces",
+ "//content/public/common:service_names",
+ "//content/public/utility",
+ "//printing/common",
+ "//skia",
+ ]
+
+ public_deps = [
+ "//components/printing/service/public/interfaces",
+ "//services/service_manager/public/cpp",
+ ]
+}
+
+service_manifest("pdf_compositor_manifest") {
+ name = "pdf_compositor"
+ source = "pdf_compositor_manifest.json"
+}
« no previous file with comments | « chrome/utility/chrome_content_utility_client.cc ('k') | components/printing/service/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698