OLD | NEW |
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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
44 "service_main.cc", | 44 "service_main.cc", |
45 "service_process.cc", | 45 "service_process.cc", |
46 "service_process.h", | 46 "service_process.h", |
47 "service_process_prefs.cc", | 47 "service_process_prefs.cc", |
48 "service_process_prefs.h", | 48 "service_process_prefs.h", |
49 ] | 49 ] |
50 | 50 |
51 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 51 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
52 | 52 |
53 deps = [ | 53 deps = [ |
| 54 "//base", |
54 "//chrome:strings", | 55 "//chrome:strings", |
55 "//chrome/common", | 56 "//chrome/common", |
56 "//base", | |
57 "//components/cloud_devices/common", | 57 "//components/cloud_devices/common", |
58 "//google_apis", | 58 "//google_apis", |
59 "//jingle:notifier", | 59 "//jingle:notifier", |
60 "//net", | 60 "//net", |
61 "//printing", | 61 "//printing", |
62 "//skia", | 62 "//skia", |
63 "//third_party/libjingle", | 63 "//third_party/libjingle", |
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 } else { | 74 } else { |
75 sources += [ "cloud_print/print_system_dummy.cc" ] | 75 sources += [ "cloud_print/print_system_dummy.cc" ] |
76 } | 76 } |
77 } | 77 } |
OLD | NEW |