| 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/buildflag_header.gni") | 5 import("//build/buildflag_header.gni") |
| 6 import("//build/util/process_version.gni") | 6 import("//build/util/process_version.gni") |
| 7 import("//chrome/common/features.gni") | 7 import("//chrome/common/features.gni") |
| 8 import("//chrome/process_version_rc_template.gni") # For branding_file_path. | 8 import("//chrome/process_version_rc_template.gni") # For branding_file_path. |
| 9 import("//extensions/features/features.gni") | 9 import("//extensions/features/features.gni") |
| 10 import("//mojo/public/tools/bindings/mojom.gni") | 10 import("//mojo/public/tools/bindings/mojom.gni") |
| (...skipping 352 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 363 public_deps += [ "//chromeos" ] | 363 public_deps += [ "//chromeos" ] |
| 364 } | 364 } |
| 365 | 365 |
| 366 if (enable_nacl) { | 366 if (enable_nacl) { |
| 367 public_deps += [ "//components/nacl/common" ] | 367 public_deps += [ "//components/nacl/common" ] |
| 368 } | 368 } |
| 369 | 369 |
| 370 # Printing. | 370 # Printing. |
| 371 if (enable_basic_printing || enable_print_preview) { | 371 if (enable_basic_printing || enable_print_preview) { |
| 372 sources += [ | 372 sources += [ |
| 373 "chrome_utility_printing_messages.h", | |
| 374 "cloud_print/cloud_print_cdd_conversion.cc", | 373 "cloud_print/cloud_print_cdd_conversion.cc", |
| 375 "cloud_print/cloud_print_cdd_conversion.h", | 374 "cloud_print/cloud_print_cdd_conversion.h", |
| 376 "cloud_print/cloud_print_class_mac.h", | 375 "cloud_print/cloud_print_class_mac.h", |
| 377 "cloud_print/cloud_print_class_mac.mm", | 376 "cloud_print/cloud_print_class_mac.mm", |
| 378 "cloud_print/cloud_print_constants.cc", | 377 "cloud_print/cloud_print_constants.cc", |
| 379 "cloud_print/cloud_print_constants.h", | 378 "cloud_print/cloud_print_constants.h", |
| 380 "cloud_print/cloud_print_helpers.cc", | 379 "cloud_print/cloud_print_helpers.cc", |
| 381 "cloud_print/cloud_print_helpers.h", | 380 "cloud_print/cloud_print_helpers.h", |
| 382 "cloud_print/cloud_print_proxy_info.cc", | 381 "cloud_print/cloud_print_proxy_info.cc", |
| 383 "cloud_print/cloud_print_proxy_info.h", | 382 "cloud_print/cloud_print_proxy_info.h", |
| (...skipping 289 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 673 "field_trial_recorder.mojom", | 672 "field_trial_recorder.mojom", |
| 674 "network_diagnostics.mojom", | 673 "network_diagnostics.mojom", |
| 675 "resource_usage_reporter.mojom", | 674 "resource_usage_reporter.mojom", |
| 676 "shell_handler_win.mojom", | 675 "shell_handler_win.mojom", |
| 677 ] | 676 ] |
| 678 | 677 |
| 679 public_deps = [ | 678 public_deps = [ |
| 680 "//url/mojo:url_mojom_gurl", | 679 "//url/mojo:url_mojom_gurl", |
| 681 ] | 680 ] |
| 682 } | 681 } |
| OLD | NEW |