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

Unified Diff: content/utility/BUILD.gn

Issue 2832633002: Add PDF compositor service (Closed)
Patch Set: remove headers Created 3 years, 8 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
Index: content/utility/BUILD.gn
diff --git a/content/utility/BUILD.gn b/content/utility/BUILD.gn
index 2368cf8c3ce716293e2d51c059d3a9973431a871..992ce79f8463a5dc1113c2ed33de9e49a16289c7 100644
--- a/content/utility/BUILD.gn
+++ b/content/utility/BUILD.gn
@@ -3,6 +3,7 @@
# found in the LICENSE file.
import("//media/media_options.gni")
+import("//printing/features/features.gni")
source_set("utility") {
# Only the public target should depend on this. All other targets (even
@@ -37,6 +38,7 @@ source_set("utility") {
"//mojo/common",
"//mojo/public/cpp/bindings",
"//ppapi/features",
+ "//printing/features",
"//sandbox",
"//services/data_decoder:lib",
"//services/data_decoder/public/cpp",
@@ -53,6 +55,10 @@ source_set("utility") {
if (mojo_media_host == "utility") {
deps += [ "//media/mojo/services" ]
}
+
+ if (enable_basic_printing || enable_print_preview) {
+ deps += [ "//components/printing/service" ]
+ }
}
# See comment at the top of //content/BUILD.gn for how this works.

Powered by Google App Engine
This is Rietveld 408576698