| 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/ui.gni") | 6 import("//build/config/ui.gni") |
| 7 import("//testing/test.gni") | 7 import("//testing/test.gni") |
| 8 import("//tools/grit/repack.gni") | 8 import("//tools/grit/repack.gni") |
| 9 | 9 |
| 10 # Collection of all components. You wouldn't link to this, but this is rather | 10 # Collection of all components. You wouldn't link to this, but this is rather |
| 11 # to reference the files so they can be compiled by the build system. | 11 # to reference the files so they can be compiled by the build system. |
| 12 group("all_components") { | 12 group("all_components") { |
| 13 testonly = true # You shouldn't actually link to this. | 13 testonly = true # You shouldn't actually link to this. |
| 14 visibility = [ "//:*" ] # Only for the root targets to bring in. | 14 visibility = [ "//:*" ] # Only for the root targets to bring in. |
| 15 | 15 |
| 16 deps = [ | 16 deps = [ |
| 17 "//components/bookmarks/browser", | 17 "//components/bookmarks/browser", |
| 18 "//components/bookmarks/common", | 18 "//components/bookmarks/common", |
| 19 "//components/bookmarks/managed", | 19 "//components/bookmarks/managed", |
| 20 "//components/bookmarks/test", | 20 "//components/bookmarks/test", |
| 21 "//components/browser_sync/common", |
| 21 "//components/bubble", | 22 "//components/bubble", |
| 22 "//components/captive_portal", | 23 "//components/captive_portal", |
| 23 "//components/chrome_apps", | 24 "//components/chrome_apps", |
| 24 "//components/component_updater", | 25 "//components/component_updater", |
| 25 "//components/compression", | 26 "//components/compression", |
| 26 "//components/crx_file", | 27 "//components/crx_file", |
| 27 "//components/data_reduction_proxy/core/browser", | 28 "//components/data_reduction_proxy/core/browser", |
| 28 "//components/data_reduction_proxy/core/common", | 29 "//components/data_reduction_proxy/core/common", |
| 29 "//components/device_event_log", | 30 "//components/device_event_log", |
| 30 "//components/google/core/browser", | 31 "//components/google/core/browser", |
| (...skipping 595 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 626 ] | 627 ] |
| 627 if (!is_ios) { | 628 if (!is_ios) { |
| 628 deps += [ | 629 deps += [ |
| 629 "//base", | 630 "//base", |
| 630 "//base/test:test_support_perf", | 631 "//base/test:test_support_perf", |
| 631 "//content/test:test_support", | 632 "//content/test:test_support", |
| 632 "//components/visitedlink/browser", | 633 "//components/visitedlink/browser", |
| 633 ] | 634 ] |
| 634 } | 635 } |
| 635 } | 636 } |
| OLD | NEW |