| 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_components") { | 7 group("all_components") { |
| 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 = [ |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 47 "//components/translate/core/common", | 47 "//components/translate/core/common", |
| 48 "//components/url_fixer", | 48 "//components/url_fixer", |
| 49 "//components/url_matcher", | 49 "//components/url_matcher", |
| 50 "//components/usb_service", | 50 "//components/usb_service", |
| 51 "//components/user_prefs", | 51 "//components/user_prefs", |
| 52 "//components/variations", | 52 "//components/variations", |
| 53 "//components/visitedlink/browser", | 53 "//components/visitedlink/browser", |
| 54 "//components/visitedlink/common", | 54 "//components/visitedlink/common", |
| 55 "//components/visitedlink/renderer", | 55 "//components/visitedlink/renderer", |
| 56 "//components/web_modal", | 56 "//components/web_modal", |
| 57 "//components/webdata/common", |
| 57 ] | 58 ] |
| 58 | 59 |
| 59 if (is_win || is_mac) { | 60 if (is_win || is_mac) { |
| 60 deps += [ | 61 deps += [ |
| 61 "//components/wifi", | 62 "//components/wifi", |
| 62 ] | 63 ] |
| 63 } | 64 } |
| 64 | 65 |
| 65 if (!is_ios) { | 66 if (!is_ios) { |
| 66 deps += [ "//components/keyed_service/content" ] | 67 deps += [ "//components/keyed_service/content" ] |
| (...skipping 25 matching lines...) Expand all Loading... |
| 92 "//components/translate/content/renderer", # Blocked on content. | 93 "//components/translate/content/renderer", # Blocked on content. |
| 93 "//components/usb_service", # Blocked on content. | 94 "//components/usb_service", # Blocked on content. |
| 94 "//components/user_prefs", # Blocked on content. | 95 "//components/user_prefs", # Blocked on content. |
| 95 "//components/visitedlink/browser", # Blocked on content. | 96 "//components/visitedlink/browser", # Blocked on content. |
| 96 "//components/visitedlink/common", # Blocked on content. | 97 "//components/visitedlink/common", # Blocked on content. |
| 97 "//components/visitedlink/renderer", # Blocked on blink | 98 "//components/visitedlink/renderer", # Blocked on blink |
| 98 "//components/web_modal", # Blocked on content. | 99 "//components/web_modal", # Blocked on content. |
| 99 ] | 100 ] |
| 100 } | 101 } |
| 101 } | 102 } |
| OLD | NEW |