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/chrome_build.gni") | 5 import("//build/config/chrome_build.gni") |
6 import("//build/config/crypto.gni") | 6 import("//build/config/crypto.gni") |
7 import("//build/config/features.gni") | 7 import("//build/config/features.gni") |
8 import("//build/config/ui.gni") | 8 import("//build/config/ui.gni") |
9 import("//build/split_static_library.gni") | 9 import("//build/split_static_library.gni") |
10 import("//chrome/common/features.gni") | 10 import("//chrome/common/features.gni") |
(...skipping 2288 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2299 "printing/print_view_manager_base.h", | 2299 "printing/print_view_manager_base.h", |
2300 "printing/print_view_manager_common.cc", | 2300 "printing/print_view_manager_common.cc", |
2301 "printing/print_view_manager_common.h", | 2301 "printing/print_view_manager_common.h", |
2302 "printing/printer_query.cc", | 2302 "printing/printer_query.cc", |
2303 "printing/printer_query.h", | 2303 "printing/printer_query.h", |
2304 "printing/printing_message_filter.cc", | 2304 "printing/printing_message_filter.cc", |
2305 "printing/printing_message_filter.h", | 2305 "printing/printing_message_filter.h", |
2306 ] | 2306 ] |
2307 deps += [ | 2307 deps += [ |
2308 "//components/printing/browser", | 2308 "//components/printing/browser", |
| 2309 "//components/printing/common", |
2309 "//printing", | 2310 "//printing", |
2310 ] | 2311 ] |
2311 | 2312 |
2312 if (is_win) { | 2313 if (is_win) { |
2313 sources += [ | 2314 sources += [ |
2314 "printing/pdf_to_emf_converter.cc", | 2315 "printing/pdf_to_emf_converter.cc", |
2315 "printing/pdf_to_emf_converter.h", | 2316 "printing/pdf_to_emf_converter.h", |
2316 ] | 2317 ] |
| 2318 deps += [ "//components/printing/common:interfaces" ] |
2317 } | 2319 } |
2318 if (enable_print_preview) { | 2320 if (enable_print_preview) { |
2319 # Full printing on top of the above. | 2321 # Full printing on top of the above. |
2320 sources += [ | 2322 sources += [ |
2321 "printing/background_printing_manager.cc", | 2323 "printing/background_printing_manager.cc", |
2322 "printing/background_printing_manager.h", | 2324 "printing/background_printing_manager.h", |
2323 "printing/cloud_print/cloud_print_proxy_service.cc", | 2325 "printing/cloud_print/cloud_print_proxy_service.cc", |
2324 "printing/cloud_print/cloud_print_proxy_service.h", | 2326 "printing/cloud_print/cloud_print_proxy_service.h", |
2325 "printing/cloud_print/cloud_print_proxy_service_factory.cc", | 2327 "printing/cloud_print/cloud_print_proxy_service_factory.cc", |
2326 "printing/cloud_print/cloud_print_proxy_service_factory.h", | 2328 "printing/cloud_print/cloud_print_proxy_service_factory.h", |
(...skipping 16 matching lines...) Expand all Loading... |
2343 "printing/printer_manager_dialog.h", | 2345 "printing/printer_manager_dialog.h", |
2344 "printing/printer_manager_dialog_linux.cc", | 2346 "printing/printer_manager_dialog_linux.cc", |
2345 "printing/printer_manager_dialog_mac.mm", | 2347 "printing/printer_manager_dialog_mac.mm", |
2346 "printing/printer_manager_dialog_win.cc", | 2348 "printing/printer_manager_dialog_win.cc", |
2347 "printing/pwg_raster_converter.cc", | 2349 "printing/pwg_raster_converter.cc", |
2348 "printing/pwg_raster_converter.h", | 2350 "printing/pwg_raster_converter.h", |
2349 "service_process/service_process_control.cc", | 2351 "service_process/service_process_control.cc", |
2350 "service_process/service_process_control.h", | 2352 "service_process/service_process_control.h", |
2351 "service_process/service_process_control_mac.mm", | 2353 "service_process/service_process_control_mac.mm", |
2352 ] | 2354 ] |
| 2355 deps += [ "//components/printing/common:interfaces" ] |
2353 } else { | 2356 } else { |
2354 # Partial-only printing support. | 2357 # Partial-only printing support. |
2355 sources += [ | 2358 sources += [ |
2356 "printing/print_view_manager_basic.cc", | 2359 "printing/print_view_manager_basic.cc", |
2357 "printing/print_view_manager_basic.h", | 2360 "printing/print_view_manager_basic.h", |
2358 ] | 2361 ] |
2359 } | 2362 } |
2360 } | 2363 } |
2361 if (enable_captive_portal_detection) { | 2364 if (enable_captive_portal_detection) { |
2362 sources += [ | 2365 sources += [ |
(...skipping 2074 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4437 # linking all of the test support. | 4440 # linking all of the test support. |
4438 static_library("pepper_cdm_test_constants") { | 4441 static_library("pepper_cdm_test_constants") { |
4439 testonly = true | 4442 testonly = true |
4440 visibility = [ "//chrome/*" ] | 4443 visibility = [ "//chrome/*" ] |
4441 sources = [ | 4444 sources = [ |
4442 "media/pepper_cdm_test_constants.cc", | 4445 "media/pepper_cdm_test_constants.cc", |
4443 "media/pepper_cdm_test_constants.h", | 4446 "media/pepper_cdm_test_constants.h", |
4444 ] | 4447 ] |
4445 } | 4448 } |
4446 } | 4449 } |
OLD | NEW |