| 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 466 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 477 # GYP version: chromium_child_dependencies variable in chrome.gyp | 477 # GYP version: chromium_child_dependencies variable in chrome.gyp |
| 478 group("child_dependencies") { | 478 group("child_dependencies") { |
| 479 public_deps = [ | 479 public_deps = [ |
| 480 "//chrome/common", | 480 "//chrome/common", |
| 481 "//sync", | 481 "//sync", |
| 482 ] | 482 ] |
| 483 if (!is_ios) { | 483 if (!is_ios) { |
| 484 public_deps += [ | 484 public_deps += [ |
| 485 "//chrome/browser/devtools", | 485 "//chrome/browser/devtools", |
| 486 "//chrome/child", | 486 "//chrome/child", |
| 487 "//chrome/gpu", |
| 487 "//chrome/plugin", | 488 "//chrome/plugin", |
| 488 "//chrome/renderer", | 489 "//chrome/renderer", |
| 489 "//chrome/utility", | 490 "//chrome/utility", |
| 490 "//content/public/child", | 491 "//content/public/child", |
| 491 "//third_party/WebKit/public:blink_devtools_frontend_resources", | 492 "//third_party/WebKit/public:blink_devtools_frontend_resources", |
| 492 ] | 493 ] |
| 493 } | 494 } |
| 494 if (cld_version == 2) { | 495 if (cld_version == 2) { |
| 495 public_deps += [ "//third_party/cld_2:cld2_platform_impl" ] | 496 public_deps += [ "//third_party/cld_2:cld2_platform_impl" ] |
| 496 } | 497 } |
| (...skipping 593 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1090 "//chrome/app/theme/$branding_path_component/product_logo_48.png", | 1091 "//chrome/app/theme/$branding_path_component/product_logo_48.png", |
| 1091 "//chrome/tools/build/linux/chrome-wrapper", | 1092 "//chrome/tools/build/linux/chrome-wrapper", |
| 1092 "//third_party/xdg-utils/scripts/xdg-mime", | 1093 "//third_party/xdg-utils/scripts/xdg-mime", |
| 1093 "//third_party/xdg-utils/scripts/xdg-settings", | 1094 "//third_party/xdg-utils/scripts/xdg-settings", |
| 1094 ] | 1095 ] |
| 1095 outputs = [ | 1096 outputs = [ |
| 1096 "$root_out_dir/{{source_file_part}}", | 1097 "$root_out_dir/{{source_file_part}}", |
| 1097 ] | 1098 ] |
| 1098 } | 1099 } |
| 1099 } | 1100 } |
| OLD | NEW |