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

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

Issue 2491733002: Add data usage tracking for cloud print, update client service and search provide logos (Closed)
Patch Set: Rebased Created 4 years, 1 month 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 | « chrome/browser/printing/cloud_print/privet_url_fetcher.cc ('k') | chrome/service/DEPS » ('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/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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 "service_process_prefs.h", 49 "service_process_prefs.h",
50 ] 50 ]
51 51
52 configs += [ "//build/config/compiler:wexit_time_destructors" ] 52 configs += [ "//build/config/compiler:wexit_time_destructors" ]
53 53
54 deps = [ 54 deps = [
55 "//base", 55 "//base",
56 "//chrome:strings", 56 "//chrome:strings",
57 "//chrome/common", 57 "//chrome/common",
58 "//components/cloud_devices/common", 58 "//components/cloud_devices/common",
59 "//components/data_use_measurement/core",
59 "//google_apis", 60 "//google_apis",
60 "//jingle:notifier", 61 "//jingle:notifier",
61 "//mojo/edk/system", 62 "//mojo/edk/system",
62 "//net", 63 "//net",
63 "//printing", 64 "//printing",
64 "//skia", 65 "//skia",
65 "//third_party/libjingle", 66 "//third_party/libjingle",
66 ] 67 ]
67 68
68 if (use_cups && !is_chromeos) { 69 if (use_cups && !is_chromeos) {
69 sources += [ "cloud_print/print_system_cups.cc" ] 70 sources += [ "cloud_print/print_system_cups.cc" ]
70 configs += [ "//printing:cups" ] 71 configs += [ "//printing:cups" ]
71 } else if (is_win) { 72 } else if (is_win) {
72 sources += [ 73 sources += [
73 "service_utility_process_host.cc", 74 "service_utility_process_host.cc",
74 "service_utility_process_host.h", 75 "service_utility_process_host.h",
75 ] 76 ]
76 } else { 77 } else {
77 sources += [ "cloud_print/print_system_dummy.cc" ] 78 sources += [ "cloud_print/print_system_dummy.cc" ]
78 } 79 }
79 } 80 }
OLDNEW
« no previous file with comments | « chrome/browser/printing/cloud_print/privet_url_fetcher.cc ('k') | chrome/service/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698