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 477 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
488 # GYP version: chromium_child_dependencies variable in chrome.gyp | 488 # GYP version: chromium_child_dependencies variable in chrome.gyp |
489 group("child_dependencies") { | 489 group("child_dependencies") { |
490 public_deps = [ | 490 public_deps = [ |
491 "//chrome/common", | 491 "//chrome/common", |
492 "//sync", | 492 "//sync", |
493 ] | 493 ] |
494 if (!is_ios) { | 494 if (!is_ios) { |
495 public_deps += [ | 495 public_deps += [ |
496 "//chrome/browser/devtools", | 496 "//chrome/browser/devtools", |
497 "//chrome/child", | 497 "//chrome/child", |
| 498 "//chrome/gpu", |
498 "//chrome/renderer", | 499 "//chrome/renderer", |
499 "//chrome/utility", | 500 "//chrome/utility", |
500 "//content/public/child", | 501 "//content/public/child", |
501 "//third_party/WebKit/public:blink_devtools_frontend_resources", | 502 "//third_party/WebKit/public:blink_devtools_frontend_resources", |
502 ] | 503 ] |
503 } | 504 } |
504 if (cld_version == 2) { | 505 if (cld_version == 2) { |
505 public_deps += [ "//third_party/cld_2:cld2_platform_impl" ] | 506 public_deps += [ "//third_party/cld_2:cld2_platform_impl" ] |
506 } | 507 } |
507 | 508 |
(...skipping 497 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1005 libs = [ | 1006 libs = [ |
1006 "android", | 1007 "android", |
1007 "jnigraphics", | 1008 "jnigraphics", |
1008 ] | 1009 ] |
1009 | 1010 |
1010 deps = [ | 1011 deps = [ |
1011 "//chrome/browser", | 1012 "//chrome/browser", |
1012 "//chrome/browser/ui", | 1013 "//chrome/browser/ui", |
1013 "//chrome/child", | 1014 "//chrome/child", |
1014 "//chrome/common", | 1015 "//chrome/common", |
| 1016 "//chrome/gpu", |
1015 "//chrome/renderer", | 1017 "//chrome/renderer", |
1016 "//chrome/utility", | 1018 "//chrome/utility", |
1017 "//components/safe_browsing_db:safe_browsing_db_mobile", | 1019 "//components/safe_browsing_db:safe_browsing_db_mobile", |
1018 "//content/public/app:both", | 1020 "//content/public/app:both", |
1019 ] | 1021 ] |
1020 } | 1022 } |
1021 } | 1023 } |
1022 | 1024 |
1023 if (is_linux) { | 1025 if (is_linux) { |
1024 action("manpage") { | 1026 action("manpage") { |
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1096 "//chrome/app/theme/$branding_path_component/product_logo_48.png", | 1098 "//chrome/app/theme/$branding_path_component/product_logo_48.png", |
1097 "//chrome/tools/build/linux/chrome-wrapper", | 1099 "//chrome/tools/build/linux/chrome-wrapper", |
1098 "//third_party/xdg-utils/scripts/xdg-mime", | 1100 "//third_party/xdg-utils/scripts/xdg-mime", |
1099 "//third_party/xdg-utils/scripts/xdg-settings", | 1101 "//third_party/xdg-utils/scripts/xdg-settings", |
1100 ] | 1102 ] |
1101 outputs = [ | 1103 outputs = [ |
1102 "$root_out_dir/{{source_file_part}}", | 1104 "$root_out_dir/{{source_file_part}}", |
1103 ] | 1105 ] |
1104 } | 1106 } |
1105 } | 1107 } |
OLD | NEW |