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 444 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
455 } | 455 } |
456 } | 456 } |
457 | 457 |
458 # GYP version: chromium_browser_dependencies variable in chrome.gyp | 458 # GYP version: chromium_browser_dependencies variable in chrome.gyp |
459 group("browser_dependencies") { | 459 group("browser_dependencies") { |
460 public_deps = [ | 460 public_deps = [ |
461 "//chrome/browser", | 461 "//chrome/browser", |
462 "//chrome/common", | 462 "//chrome/common", |
463 "//sync", | 463 "//sync", |
464 ] | 464 ] |
465 if (!is_ios) { | 465 if (enable_plugins) { |
466 public_deps += [ "//ppapi/host" ] | 466 public_deps += [ "//ppapi/host" ] |
467 } | 467 } |
468 | 468 |
469 if (enable_basic_printing || enable_print_preview) { | 469 if (enable_basic_printing || enable_print_preview) { |
470 public_deps += [ "//printing" ] | 470 public_deps += [ "//printing" ] |
471 if (enable_print_preview) { | 471 if (enable_print_preview) { |
472 public_deps += [ "//chrome/service" ] | 472 public_deps += [ "//chrome/service" ] |
473 } | 473 } |
474 } | 474 } |
475 } | 475 } |
(...skipping 595 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1071 "//chrome/app/theme/$branding_path_component/product_logo_48.png", | 1071 "//chrome/app/theme/$branding_path_component/product_logo_48.png", |
1072 "//chrome/tools/build/linux/chrome-wrapper", | 1072 "//chrome/tools/build/linux/chrome-wrapper", |
1073 "//third_party/xdg-utils/scripts/xdg-mime", | 1073 "//third_party/xdg-utils/scripts/xdg-mime", |
1074 "//third_party/xdg-utils/scripts/xdg-settings", | 1074 "//third_party/xdg-utils/scripts/xdg-settings", |
1075 ] | 1075 ] |
1076 outputs = [ | 1076 outputs = [ |
1077 "$root_out_dir/{{source_file_part}}", | 1077 "$root_out_dir/{{source_file_part}}", |
1078 ] | 1078 ] |
1079 } | 1079 } |
1080 } | 1080 } |
OLD | NEW |