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 200 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
211 "//chrome/browser", | 211 "//chrome/browser", |
212 "//chrome/common", | 212 "//chrome/common", |
213 "//sync", | 213 "//sync", |
214 ] | 214 ] |
215 if (!is_ios) { | 215 if (!is_ios) { |
216 deps += [ | 216 deps += [ |
217 "//ppapi:ppapi_host", | 217 "//ppapi:ppapi_host", |
218 ] | 218 ] |
219 } | 219 } |
220 | 220 |
221 if (printing_mode != 0) { | 221 if (enable_basic_printing || enable_print_preview) { |
222 deps += [ "//printing" ] | 222 deps += [ "//printing" ] |
223 if (printing_mode == 1) { | 223 if (enable_print_preview) { |
224 deps += [ "//chrome/service" ] | 224 deps += [ "//chrome/service" ] |
225 } | 225 } |
226 } | 226 } |
227 } | 227 } |
228 | 228 |
229 # GYP version: chromium_child_dependencies variable in chrome.gyp | 229 # GYP version: chromium_child_dependencies variable in chrome.gyp |
230 group("child_dependencies") { | 230 group("child_dependencies") { |
231 deps = [ | 231 deps = [ |
232 "//chrome/common", | 232 "//chrome/common", |
233 "//sync", | 233 "//sync", |
(...skipping 350 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
584 "//chrome/browser/ui", | 584 "//chrome/browser/ui", |
585 "//chrome/plugin", | 585 "//chrome/plugin", |
586 "//chrome/renderer", | 586 "//chrome/renderer", |
587 "//chrome/utility", | 587 "//chrome/utility", |
588 "//components/enhanced_bookmarks", | 588 "//components/enhanced_bookmarks", |
589 "//content/public/app:browser", | 589 "//content/public/app:browser", |
590 ] | 590 ] |
591 } | 591 } |
592 | 592 |
593 } | 593 } |
OLD | NEW |