Chromium Code Reviews| 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 # Collection of all components. You wouldn't link to this, but this is rather | 5 # Collection of all components. You wouldn't link to this, but this is rather |
| 6 # to reference the files so they can be compiled by the build system. | 6 # to reference the files so they can be compiled by the build system. |
| 7 group("all") { | 7 group("all_components") { |
|
jamesr
2014/06/20 21:45:08
//components:all_components is repetative - what's
brettw
2014/06/21 00:26:30
There's an implicit "all" target. Naming something
| |
| 8 visibility = "//:*" # Only for the root targets to bring in. | 8 visibility = "//:*" # Only for the root targets to bring in. |
| 9 | 9 |
| 10 deps = [ | 10 deps = [ |
| 11 "//components/cloud_devices/common", | 11 "//components/cloud_devices/common", |
| 12 "//components/favicon_base", | 12 "//components/favicon_base", |
| 13 "//components/json_schema", | 13 "//components/json_schema", |
| 14 "//components/language_usage_metrics", | 14 "//components/language_usage_metrics", |
| 15 "//components/metrics", | 15 "//components/metrics", |
| 16 "//components/navigation_metrics", | 16 "//components/navigation_metrics", |
| 17 "//components/onc", | 17 "//components/onc", |
| (...skipping 19 matching lines...) Expand all Loading... | |
| 37 deps -= [ | 37 deps -= [ |
| 38 "//components/cloud_devices/common", # Should work, needs checking. | 38 "//components/cloud_devices/common", # Should work, needs checking. |
| 39 "//components/json_schema", # Should work, needs checking. | 39 "//components/json_schema", # Should work, needs checking. |
| 40 "//components/keyed_service/content", # Blocked on content. | 40 "//components/keyed_service/content", # Blocked on content. |
| 41 "//components/user_prefs", # Blocked on content. | 41 "//components/user_prefs", # Blocked on content. |
| 42 "//components/visitedlink/browser", # Blocked on content. | 42 "//components/visitedlink/browser", # Blocked on content. |
| 43 "//components/visitedlink/common", # Blocked on content. | 43 "//components/visitedlink/common", # Blocked on content. |
| 44 ] | 44 ] |
| 45 } | 45 } |
| 46 } | 46 } |
| OLD | NEW |