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 import("//printing/features/features.gni") |
6 | 7 |
7 static_library("service") { | 8 static_library("service") { |
8 sources = [ | 9 sources = [ |
9 "cloud_print/cdd_conversion_win.cc", | 10 "cloud_print/cdd_conversion_win.cc", |
10 "cloud_print/cdd_conversion_win.h", | 11 "cloud_print/cdd_conversion_win.h", |
11 "cloud_print/cloud_print_auth.cc", | 12 "cloud_print/cloud_print_auth.cc", |
12 "cloud_print/cloud_print_auth.h", | 13 "cloud_print/cloud_print_auth.h", |
13 "cloud_print/cloud_print_connector.cc", | 14 "cloud_print/cloud_print_connector.cc", |
14 "cloud_print/cloud_print_connector.h", | 15 "cloud_print/cloud_print_connector.h", |
15 "cloud_print/cloud_print_message_handler.cc", | 16 "cloud_print/cloud_print_message_handler.cc", |
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
69 configs += [ "//printing:cups" ] | 70 configs += [ "//printing:cups" ] |
70 } else if (is_win) { | 71 } else if (is_win) { |
71 sources += [ | 72 sources += [ |
72 "service_utility_process_host.cc", | 73 "service_utility_process_host.cc", |
73 "service_utility_process_host.h", | 74 "service_utility_process_host.h", |
74 ] | 75 ] |
75 } else { | 76 } else { |
76 sources += [ "cloud_print/print_system_dummy.cc" ] | 77 sources += [ "cloud_print/print_system_dummy.cc" ] |
77 } | 78 } |
78 } | 79 } |
OLD | NEW |