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 |
(...skipping 194 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
205 } | 205 } |
206 | 206 |
207 if (!is_ios && !is_android) { | 207 if (!is_ios && !is_android) { |
208 deps += [ | 208 deps += [ |
209 "//components/copresence", | 209 "//components/copresence", |
210 "//components/storage_monitor", | 210 "//components/storage_monitor", |
211 ] | 211 ] |
212 } | 212 } |
213 | 213 |
214 if (!is_ios) { | 214 if (!is_ios) { |
215 deps += [ "//components/app_modal" ] | 215 deps += [ |
| 216 "//components/app_modal", |
| 217 "//components/browsing_data", |
| 218 ] |
216 } | 219 } |
217 | 220 |
218 if (toolkit_views) { | 221 if (toolkit_views) { |
219 deps += [ "//components/constrained_window" ] | 222 deps += [ "//components/constrained_window" ] |
220 } | 223 } |
221 } | 224 } |
222 | 225 |
223 # To add a unit test to this target, make a "unit_test" source_set in your | 226 # To add a unit test to this target, make a "unit_test" source_set in your |
224 # component (it's important to use a source_set instead of a static library or | 227 # component (it's important to use a source_set instead of a static library or |
225 # no tests will run) and add a reference here. You can add more than one unit | 228 # no tests will run) and add a reference here. You can add more than one unit |
(...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
364 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 367 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
365 | 368 |
366 deps = [ | 369 deps = [ |
367 "//base", | 370 "//base", |
368 "//base/test:test_support_perf", | 371 "//base/test:test_support_perf", |
369 "//testing/gtest", | 372 "//testing/gtest", |
370 "//content/test:test_support", | 373 "//content/test:test_support", |
371 "//components/visitedlink/browser", | 374 "//components/visitedlink/browser", |
372 ] | 375 ] |
373 } | 376 } |
OLD | NEW |