| 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 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 88 "//components/startup_metric_utils", | 88 "//components/startup_metric_utils", |
| 89 "//components/strings", | 89 "//components/strings", |
| 90 "//components/sync_driver", | 90 "//components/sync_driver", |
| 91 "//components/tracing", | 91 "//components/tracing", |
| 92 "//components/translate/content/browser", | 92 "//components/translate/content/browser", |
| 93 "//components/translate/content/common", | 93 "//components/translate/content/common", |
| 94 "//components/translate/content/renderer", | 94 "//components/translate/content/renderer", |
| 95 "//components/translate/core/browser", | 95 "//components/translate/core/browser", |
| 96 "//components/translate/core/common", | 96 "//components/translate/core/common", |
| 97 "//components/ui/zoom:ui_zoom", | 97 "//components/ui/zoom:ui_zoom", |
| 98 "//components/undo", |
| 98 "//components/update_client", | 99 "//components/update_client", |
| 99 "//components/url_fixer", | 100 "//components/url_fixer", |
| 100 "//components/url_matcher", | 101 "//components/url_matcher", |
| 101 "//components/user_manager", | 102 "//components/user_manager", |
| 102 "//components/user_prefs", | 103 "//components/user_prefs", |
| 103 "//components/variations", | 104 "//components/variations", |
| 104 "//components/visitedlink/browser", | 105 "//components/visitedlink/browser", |
| 105 "//components/visitedlink/common", | 106 "//components/visitedlink/common", |
| 106 "//components/visitedlink/renderer", | 107 "//components/visitedlink/renderer", |
| 107 "//components/wallpaper", | 108 "//components/wallpaper", |
| (...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 260 "//components/dom_distiller/core:unit_tests", | 261 "//components/dom_distiller/core:unit_tests", |
| 261 "//components/domain_reliability:unit_tests", | 262 "//components/domain_reliability:unit_tests", |
| 262 "//components/favicon_base:unit_tests", | 263 "//components/favicon_base:unit_tests", |
| 263 "//components/google/core/browser:unit_tests", | 264 "//components/google/core/browser:unit_tests", |
| 264 "//components/invalidation:unittests", | 265 "//components/invalidation:unittests", |
| 265 "//components/login:unit_tests", | 266 "//components/login:unit_tests", |
| 266 "//components/metrics:unit_tests", | 267 "//components/metrics:unit_tests", |
| 267 "//components/omnibox:unit_tests", | 268 "//components/omnibox:unit_tests", |
| 268 "//components/ownership:unit_tests", | 269 "//components/ownership:unit_tests", |
| 269 "//components/packed_ct_ev_whitelist:unit_tests", | 270 "//components/packed_ct_ev_whitelist:unit_tests", |
| 271 "//components/undo:unit_tests", |
| 270 "//components/update_client:unit_tests", | 272 "//components/update_client:unit_tests", |
| 271 "//components/variations:unit_tests", | 273 "//components/variations:unit_tests", |
| 272 "//components/web_resource:unit_tests", | 274 "//components/web_resource:unit_tests", |
| 273 "//components/webcrypto:unit_tests", | 275 "//components/webcrypto:unit_tests", |
| 274 "//components/webdata/common:unit_tests", | 276 "//components/webdata/common:unit_tests", |
| 275 | 277 |
| 276 # These are the deps required by the code in this target. | 278 # These are the deps required by the code in this target. |
| 277 "//base", | 279 "//base", |
| 278 "//base/test:test_support", | 280 "//base/test:test_support", |
| 279 "//content/test:test_support", | 281 "//content/test:test_support", |
| (...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 378 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 380 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
| 379 | 381 |
| 380 deps = [ | 382 deps = [ |
| 381 "//base", | 383 "//base", |
| 382 "//base/test:test_support_perf", | 384 "//base/test:test_support_perf", |
| 383 "//testing/gtest", | 385 "//testing/gtest", |
| 384 "//content/test:test_support", | 386 "//content/test:test_support", |
| 385 "//components/visitedlink/browser", | 387 "//components/visitedlink/browser", |
| 386 ] | 388 ] |
| 387 } | 389 } |
| OLD | NEW |