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

Side by Side Diff: chrome/service/BUILD.gn

Issue 2477283002: Convert printing IPCs to Mojo
Patch Set: Fix more Windows compile errors Created 3 years, 11 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
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/features.gni") 5 import("//build/config/features.gni")
6 import("//printing/features/features.gni") 6 import("//printing/features/features.gni")
7 7
8 static_library("service") { 8 static_library("service") {
9 sources = [ 9 sources = [
10 "cloud_print/cdd_conversion_win.cc", 10 "cloud_print/cdd_conversion_win.cc",
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
67 ] 67 ]
68 68
69 if (use_cups && !is_chromeos) { 69 if (use_cups && !is_chromeos) {
70 sources += [ "cloud_print/print_system_cups.cc" ] 70 sources += [ "cloud_print/print_system_cups.cc" ]
71 configs += [ "//printing:cups" ] 71 configs += [ "//printing:cups" ]
72 } else if (is_win) { 72 } else if (is_win) {
73 sources += [ 73 sources += [
74 "service_utility_process_host.cc", 74 "service_utility_process_host.cc",
75 "service_utility_process_host.h", 75 "service_utility_process_host.h",
76 ] 76 ]
77 deps += [ "//components/printing/common:interfaces" ]
77 } else { 78 } else {
78 sources += [ "cloud_print/print_system_dummy.cc" ] 79 sources += [ "cloud_print/print_system_dummy.cc" ]
79 } 80 }
80 } 81 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698