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