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/config/chrome_build.gni") | 6 import("//build/config/chrome_build.gni") |
7 import("//build/config/compiler/compiler.gni") | 7 import("//build/config/compiler/compiler.gni") |
8 import("//build/config/features.gni") | 8 import("//build/config/features.gni") |
9 import("//build/config/locales.gni") | 9 import("//build/config/locales.gni") |
10 import("//build/config/sanitizers/sanitizers.gni") | 10 import("//build/config/sanitizers/sanitizers.gni") |
(...skipping 480 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
491 # GYP version: chromium_child_dependencies variable in chrome.gyp | 491 # GYP version: chromium_child_dependencies variable in chrome.gyp |
492 group("child_dependencies") { | 492 group("child_dependencies") { |
493 public_deps = [ | 493 public_deps = [ |
494 "//chrome/common", | 494 "//chrome/common", |
495 "//sync", | 495 "//sync", |
496 ] | 496 ] |
497 if (!is_ios) { | 497 if (!is_ios) { |
498 public_deps += [ | 498 public_deps += [ |
499 "//chrome/browser/devtools", | 499 "//chrome/browser/devtools", |
500 "//chrome/child", | 500 "//chrome/child", |
| 501 "//chrome/gpu", |
501 "//chrome/plugin", | 502 "//chrome/plugin", |
502 "//chrome/renderer", | 503 "//chrome/renderer", |
503 "//chrome/utility", | 504 "//chrome/utility", |
504 "//content/public/child", | 505 "//content/public/child", |
505 "//third_party/WebKit/public:blink_devtools_frontend_resources", | 506 "//third_party/WebKit/public:blink_devtools_frontend_resources", |
506 ] | 507 ] |
507 } | 508 } |
508 if (cld_version == 2) { | 509 if (cld_version == 2) { |
509 public_deps += [ "//third_party/cld_2:cld2_platform_impl" ] | 510 public_deps += [ "//third_party/cld_2:cld2_platform_impl" ] |
510 } | 511 } |
(...skipping 600 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1111 "//chrome/app/theme/$branding_path_component/product_logo_48.png", | 1112 "//chrome/app/theme/$branding_path_component/product_logo_48.png", |
1112 "//chrome/tools/build/linux/chrome-wrapper", | 1113 "//chrome/tools/build/linux/chrome-wrapper", |
1113 "//third_party/xdg-utils/scripts/xdg-mime", | 1114 "//third_party/xdg-utils/scripts/xdg-mime", |
1114 "//third_party/xdg-utils/scripts/xdg-settings", | 1115 "//third_party/xdg-utils/scripts/xdg-settings", |
1115 ] | 1116 ] |
1116 outputs = [ | 1117 outputs = [ |
1117 "$root_out_dir/{{source_file_part}}", | 1118 "$root_out_dir/{{source_file_part}}", |
1118 ] | 1119 ] |
1119 } | 1120 } |
1120 } | 1121 } |
OLD | NEW |