| 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 141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 152 "//components/user_prefs", # Blocked on content. | 152 "//components/user_prefs", # Blocked on content. |
| 153 "//components/visitedlink/browser", # Blocked on content. | 153 "//components/visitedlink/browser", # Blocked on content. |
| 154 "//components/visitedlink/common", # Blocked on content. | 154 "//components/visitedlink/common", # Blocked on content. |
| 155 "//components/visitedlink/renderer", # Blocked on blink | 155 "//components/visitedlink/renderer", # Blocked on blink |
| 156 "//components/web_modal", # Blocked on content. | 156 "//components/web_modal", # Blocked on content. |
| 157 ] | 157 ] |
| 158 } | 158 } |
| 159 | 159 |
| 160 if (!is_ios && !is_android) { | 160 if (!is_ios && !is_android) { |
| 161 deps += [ | 161 deps += [ |
| 162 "//components/copresence", |
| 162 "//components/storage_monitor", | 163 "//components/storage_monitor", |
| 163 ] | 164 ] |
| 164 } | 165 } |
| 165 } | 166 } |
| 166 | 167 |
| 167 # TODO(GYP) enable when it links. | 168 # TODO(GYP) enable when it links. |
| 168 if (false) { | 169 if (false) { |
| 169 | 170 |
| 170 # To add a unit test to this target, make a "unit_test" source_set in your | 171 # To add a unit test to this target, make a "unit_test" source_set in your |
| 171 # component (it's important to use a source_set instead of a static library or | 172 # component (it's important to use a source_set instead of a static library or |
| (...skipping 23 matching lines...) Expand all Loading... |
| 195 ] | 196 ] |
| 196 | 197 |
| 197 # TODO(GYP) need this target. | 198 # TODO(GYP) need this target. |
| 198 #'breakpad/app/crash_keys_win_unittest.cc', | 199 #'breakpad/app/crash_keys_win_unittest.cc', |
| 199 | 200 |
| 200 # Precache tests need these defines. | 201 # Precache tests need these defines. |
| 201 #configs += [ "//components/precache/core:precache_config" ] | 202 #configs += [ "//components/precache/core:precache_config" ] |
| 202 } | 203 } |
| 203 | 204 |
| 204 } | 205 } |
| OLD | NEW |