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

Side by Side Diff: chrome/app/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 unified diff | Download patch
« no previous file with comments | « no previous file | chrome/browser/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 import("//build/config/ui.gni") 5 import("//build/config/ui.gni")
6 import("//chrome/common/features.gni") 6 import("//chrome/common/features.gni")
7 import("//ppapi/features/features.gni") 7 import("//ppapi/features/features.gni")
8 import("//printing/features/features.gni") 8 import("//printing/features/features.gni")
9 import("//services/catalog/public/tools/catalog.gni") 9 import("//services/catalog/public/tools/catalog.gni")
10 import("//services/service_manager/public/service_manifest.gni") 10 import("//services/service_manager/public/service_manifest.gni")
(...skipping 364 matching lines...) Expand 10 before | Expand all | Expand 10 after
375 ] 375 ]
376 376
377 if (is_chromeos) { 377 if (is_chromeos) {
378 deps += [ "//chrome/app/mash:chrome_mus_catalog" ] 378 deps += [ "//chrome/app/mash:chrome_mus_catalog" ]
379 } 379 }
380 } 380 }
381 } 381 }
382 382
383 chrome_packaged_services = [ ":chrome_manifest" ] 383 chrome_packaged_services = [ ":chrome_manifest" ]
384 384
385 if (enable_basic_printing || enable_print_preview) {
386 chrome_packaged_services +=
387 [ "//components/printing/service:pdf_compositor_manifest" ]
388 }
389
385 if (is_chromeos) { 390 if (is_chromeos) {
386 chrome_packaged_services += 391 chrome_packaged_services +=
387 [ "//chrome/browser:preferences_forwarder_manifest" ] 392 [ "//chrome/browser:preferences_forwarder_manifest" ]
388 } 393 }
389 394
390 service_manifest("chrome_manifest") { 395 service_manifest("chrome_manifest") {
391 source = "chrome_manifest.json" 396 source = "chrome_manifest.json"
392 } 397 }
393 398
394 service_manifest("chrome_content_packaged_services_manifest_overlay_for_mash") { 399 service_manifest("chrome_content_packaged_services_manifest_overlay_for_mash") {
(...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after
513 embedded_services = chrome_embedded_services + 518 embedded_services = chrome_embedded_services +
514 [ ":chrome_content_packaged_services_manifest" ] 519 [ ":chrome_content_packaged_services_manifest" ]
515 } 520 }
516 521
517 catalog("catalog_for_mash") { 522 catalog("catalog_for_mash") {
518 embedded_services = 523 embedded_services =
519 chrome_embedded_services + 524 chrome_embedded_services +
520 [ ":chrome_content_packaged_services_manifest_for_mash" ] 525 [ ":chrome_content_packaged_services_manifest_for_mash" ]
521 } 526 }
522 } 527 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698