| 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 30 matching lines...) Expand all Loading... |
| 41 "net/service_url_request_context_getter.h", | 41 "net/service_url_request_context_getter.h", |
| 42 "service_ipc_server.cc", | 42 "service_ipc_server.cc", |
| 43 "service_ipc_server.h", | 43 "service_ipc_server.h", |
| 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 += [ |
| 52 "//build/config/compiler:no_size_t_to_int_warning", |
| 53 "//build/config/compiler:wexit_time_destructors", |
| 54 ] |
| 52 | 55 |
| 53 deps = [ | 56 deps = [ |
| 54 "//base", | 57 "//base", |
| 55 "//chrome:strings", | 58 "//chrome:strings", |
| 56 "//chrome/common", | 59 "//chrome/common", |
| 57 "//components/cloud_devices/common", | 60 "//components/cloud_devices/common", |
| 58 "//google_apis", | 61 "//google_apis", |
| 59 "//jingle:notifier", | 62 "//jingle:notifier", |
| 60 "//mojo/edk/system", | 63 "//mojo/edk/system", |
| 61 "//net", | 64 "//net", |
| 62 "//printing", | 65 "//printing", |
| 63 "//skia", | 66 "//skia", |
| 64 "//third_party/libjingle", | 67 "//third_party/libjingle", |
| 65 ] | 68 ] |
| 66 | 69 |
| 67 if (use_cups && !is_chromeos) { | 70 if (use_cups && !is_chromeos) { |
| 68 sources += [ "cloud_print/print_system_cups.cc" ] | 71 sources += [ "cloud_print/print_system_cups.cc" ] |
| 69 configs += [ "//printing:cups" ] | 72 configs += [ "//printing:cups" ] |
| 70 } else if (is_win) { | 73 } else if (is_win) { |
| 71 sources += [ | 74 sources += [ |
| 72 "service_utility_process_host.cc", | 75 "service_utility_process_host.cc", |
| 73 "service_utility_process_host.h", | 76 "service_utility_process_host.h", |
| 74 ] | 77 ] |
| 75 } else { | 78 } else { |
| 76 sources += [ "cloud_print/print_system_dummy.cc" ] | 79 sources += [ "cloud_print/print_system_dummy.cc" ] |
| 77 } | 80 } |
| 78 } | 81 } |
| OLD | NEW |