| 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/features.gni") | 5 import("//build/config/features.gni") |
| 6 import("//build/config/locales.gni") | 6 import("//build/config/locales.gni") |
| 7 import("//build/config/ui.gni") | 7 import("//build/config/ui.gni") |
| 8 import("//chrome/chrome_repack_locales.gni") | 8 import("//chrome/chrome_repack_locales.gni") |
| 9 import("//chrome/version.gni") | 9 import("//chrome/version.gni") |
| 10 | 10 |
| (...skipping 250 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 261 | 261 |
| 262 # GYP version: chromium_child_dependencies variable in chrome.gyp | 262 # GYP version: chromium_child_dependencies variable in chrome.gyp |
| 263 group("child_dependencies") { | 263 group("child_dependencies") { |
| 264 deps = [ | 264 deps = [ |
| 265 "//chrome/common", | 265 "//chrome/common", |
| 266 "//sync", | 266 "//sync", |
| 267 ] | 267 ] |
| 268 if (!is_ios) { | 268 if (!is_ios) { |
| 269 deps += [ | 269 deps += [ |
| 270 "//chrome/browser/devtools", | 270 "//chrome/browser/devtools", |
| 271 "//chrome/child", |
| 271 "//chrome/plugin", | 272 "//chrome/plugin", |
| 272 "//chrome/renderer", | 273 "//chrome/renderer", |
| 273 "//chrome/utility", | 274 "//chrome/utility", |
| 274 "//content/public/child", | 275 "//content/public/child", |
| 275 "//third_party/WebKit/public:blink_devtools_frontend_resources", | 276 "//third_party/WebKit/public:blink_devtools_frontend_resources", |
| 276 ] | 277 ] |
| 277 } | 278 } |
| 278 if (cld_version == 0 || cld_version == 2) { | 279 if (cld_version == 0 || cld_version == 2) { |
| 279 deps += [ "//third_party/cld_2:cld2_platform_impl" ] | 280 deps += [ "//third_party/cld_2:cld2_platform_impl" ] |
| 280 } | 281 } |
| (...skipping 397 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 678 include_dirs = [ android_ndk_include_dir ] | 679 include_dirs = [ android_ndk_include_dir ] |
| 679 | 680 |
| 680 libs = [ | 681 libs = [ |
| 681 "android", | 682 "android", |
| 682 "jnigraphics", | 683 "jnigraphics", |
| 683 ] | 684 ] |
| 684 | 685 |
| 685 deps = [ | 686 deps = [ |
| 686 "//chrome/browser", | 687 "//chrome/browser", |
| 687 "//chrome/browser/ui", | 688 "//chrome/browser/ui", |
| 689 "//chrome/child", |
| 688 "//chrome/plugin", | 690 "//chrome/plugin", |
| 689 "//chrome/renderer", | 691 "//chrome/renderer", |
| 690 "//chrome/utility", | 692 "//chrome/utility", |
| 691 "//components/enhanced_bookmarks", | 693 "//components/enhanced_bookmarks", |
| 692 "//content/public/app:browser", | 694 "//content/public/app:browser", |
| 693 ] | 695 ] |
| 694 } | 696 } |
| 695 } | 697 } |
| OLD | NEW |