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/compiler/compiler.gni") | 6 import("//build/config/compiler/compiler.gni") |
7 import("//build/config/features.gni") | 7 import("//build/config/features.gni") |
8 import("//build/config/locales.gni") | 8 import("//build/config/locales.gni") |
9 import("//build/config/sanitizers/sanitizers.gni") | 9 import("//build/config/sanitizers/sanitizers.gni") |
10 import("//build/config/ui.gni") | 10 import("//build/config/ui.gni") |
(...skipping 449 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
460 } | 460 } |
461 } | 461 } |
462 | 462 |
463 # GYP version: chromium_browser_dependencies variable in chrome.gyp | 463 # GYP version: chromium_browser_dependencies variable in chrome.gyp |
464 group("browser_dependencies") { | 464 group("browser_dependencies") { |
465 public_deps = [ | 465 public_deps = [ |
466 "//chrome/browser", | 466 "//chrome/browser", |
467 "//chrome/common", | 467 "//chrome/common", |
468 "//sync", | 468 "//sync", |
469 ] | 469 ] |
470 if (!is_ios) { | 470 if (enable_plugins) { |
471 public_deps += [ "//ppapi/host" ] | 471 public_deps += [ "//ppapi/host" ] |
472 } | 472 } |
473 | 473 |
474 if (enable_basic_printing || enable_print_preview) { | 474 if (enable_basic_printing || enable_print_preview) { |
475 public_deps += [ "//printing" ] | 475 public_deps += [ "//printing" ] |
476 if (enable_print_preview) { | 476 if (enable_print_preview) { |
477 public_deps += [ "//chrome/service" ] | 477 public_deps += [ "//chrome/service" ] |
478 } | 478 } |
479 } | 479 } |
480 } | 480 } |
(...skipping 595 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1076 "//chrome/app/theme/$branding_path_component/product_logo_48.png", | 1076 "//chrome/app/theme/$branding_path_component/product_logo_48.png", |
1077 "//chrome/tools/build/linux/chrome-wrapper", | 1077 "//chrome/tools/build/linux/chrome-wrapper", |
1078 "//third_party/xdg-utils/scripts/xdg-mime", | 1078 "//third_party/xdg-utils/scripts/xdg-mime", |
1079 "//third_party/xdg-utils/scripts/xdg-settings", | 1079 "//third_party/xdg-utils/scripts/xdg-settings", |
1080 ] | 1080 ] |
1081 outputs = [ | 1081 outputs = [ |
1082 "$root_out_dir/{{source_file_part}}", | 1082 "$root_out_dir/{{source_file_part}}", |
1083 ] | 1083 ] |
1084 } | 1084 } |
1085 } | 1085 } |
OLD | NEW |