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

Unified Diff: chrome/service/BUILD.gn

Issue 566693002: Use file handles to interact with utility process. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Wed Sep 17 10:40:51 PDT 2014 Created 6 years, 3 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/common/chrome_utility_printing_messages.h ('k') | chrome/service/cloud_print/print_system_win.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/service/BUILD.gn
diff --git a/chrome/service/BUILD.gn b/chrome/service/BUILD.gn
index 76caa37647ffa2c99270032ab976bfa614a03c09..0f65932e74dd479b8b375fc2958bf40276f92287 100644
--- a/chrome/service/BUILD.gn
+++ b/chrome/service/BUILD.gn
@@ -44,8 +44,6 @@ static_library("service") {
"service_process.h",
"service_process_prefs.cc",
"service_process_prefs.h",
- "service_utility_process_host.cc",
- "service_utility_process_host.h",
]
deps = [
@@ -65,7 +63,12 @@ static_library("service") {
if (use_cups) {
sources += [ "cloud_print/print_system_cups.cc" ]
configs += [ "//printing:cups" ]
- } else if (!is_win) {
- sources += [ "cloud_print/print_system_dummp.cc" ]
+ } else if (is_win) {
+ sources += [
+ "service_utility_process_host.cc",
+ "service_utility_process_host.h",
+ ]
+ } else {
+ sources += [ "cloud_print/print_system_dummy.cc" ]
}
}
« no previous file with comments | « chrome/common/chrome_utility_printing_messages.h ('k') | chrome/service/cloud_print/print_system_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698