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

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

Issue 1612663002: Use a valid /prefetch argument when launching a process. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@bit
Patch Set: self-review Created 4 years, 10 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 6
7 static_library("service") { 7 static_library("service") {
8 sources = [ 8 sources = [
9 "cloud_print/cdd_conversion_win.cc", 9 "cloud_print/cdd_conversion_win.cc",
10 "cloud_print/cdd_conversion_win.h", 10 "cloud_print/cdd_conversion_win.h",
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
64 ] 64 ]
65 65
66 if (use_cups) { 66 if (use_cups) {
67 sources += [ "cloud_print/print_system_cups.cc" ] 67 sources += [ "cloud_print/print_system_cups.cc" ]
68 configs += [ "//printing:cups" ] 68 configs += [ "//printing:cups" ]
69 } else if (is_win) { 69 } else if (is_win) {
70 sources += [ 70 sources += [
71 "service_utility_process_host.cc", 71 "service_utility_process_host.cc",
72 "service_utility_process_host.h", 72 "service_utility_process_host.h",
73 ] 73 ]
74 deps += [
75 # TODO(fdoray): Remove this once the PreRead field trial has expired.
76 # crbug.com/577698
77 "//components/startup_metric_utils/common",
78 ]
74 } else { 79 } else {
75 sources += [ "cloud_print/print_system_dummy.cc" ] 80 sources += [ "cloud_print/print_system_dummy.cc" ]
76 } 81 }
77 } 82 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698