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 | 7 |
8 # Collection of all components. You wouldn't link to this, but this is rather | 8 # Collection of all components. You wouldn't link to this, but this is rather |
9 # to reference the files so they can be compiled by the build system. | 9 # to reference the files so they can be compiled by the build system. |
10 group("all_components") { | 10 group("all_components") { |
(...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
189 } | 189 } |
190 | 190 |
191 if (!is_ios && !is_android) { | 191 if (!is_ios && !is_android) { |
192 deps += [ | 192 deps += [ |
193 "//components/copresence", | 193 "//components/copresence", |
194 "//components/storage_monitor", | 194 "//components/storage_monitor", |
195 ] | 195 ] |
196 } | 196 } |
197 | 197 |
198 if (!is_ios) { | 198 if (!is_ios) { |
199 deps += [ "//components/app_modal_dialogs" ] | 199 deps += [ "//components/app_modal" ] |
200 } | 200 } |
201 | 201 |
202 if (toolkit_views) { | 202 if (toolkit_views) { |
203 deps += [ "//components/constrained_window" ] | 203 deps += [ "//components/constrained_window" ] |
204 } | 204 } |
205 } | 205 } |
206 | 206 |
207 # TODO(GYP) enable when it links. | 207 # TODO(GYP) enable when it links. |
208 if (false) { | 208 if (false) { |
209 | 209 |
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
248 | 248 |
249 # Precache tests need these defines. | 249 # Precache tests need these defines. |
250 #configs += [ "//components/precache/core:precache_config" ] | 250 #configs += [ "//components/precache/core:precache_config" ] |
251 | 251 |
252 if (toolkit_views) { | 252 if (toolkit_views) { |
253 deps += [ "//components/constrained_window:unit_tests" ] | 253 deps += [ "//components/constrained_window:unit_tests" ] |
254 } | 254 } |
255 } | 255 } |
256 | 256 |
257 } | 257 } |
OLD | NEW |