| 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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 48 "//components/invalidation", | 48 "//components/invalidation", |
| 49 "//components/json_schema", | 49 "//components/json_schema", |
| 50 "//components/keyed_service/content", | 50 "//components/keyed_service/content", |
| 51 "//components/language_usage_metrics", | 51 "//components/language_usage_metrics", |
| 52 "//components/leveldb_proto", | 52 "//components/leveldb_proto", |
| 53 "//components/login", | 53 "//components/login", |
| 54 "//components/metrics", | 54 "//components/metrics", |
| 55 "//components/navigation_interception", | 55 "//components/navigation_interception", |
| 56 "//components/navigation_metrics", | 56 "//components/navigation_metrics", |
| 57 "//components/network_time", | 57 "//components/network_time", |
| 58 "//components/omaha_client", | |
| 59 "//components/omnibox", | 58 "//components/omnibox", |
| 60 "//components/onc", | 59 "//components/onc", |
| 61 "//components/os_crypt", | 60 "//components/os_crypt", |
| 62 "//components/pairing", | 61 "//components/pairing", |
| 63 "//components/password_manager/content/browser", | 62 "//components/password_manager/content/browser", |
| 64 "//components/password_manager/core/browser", | 63 "//components/password_manager/core/browser", |
| 65 "//components/password_manager/core/common", | 64 "//components/password_manager/core/common", |
| 66 "//components/pdf/browser", | 65 "//components/pdf/browser", |
| 67 "//components/pdf/common", | 66 "//components/pdf/common", |
| 68 "//components/pdf/renderer", | 67 "//components/pdf/renderer", |
| (...skipping 17 matching lines...) Expand all Loading... |
| 86 "//components/startup_metric_utils", | 85 "//components/startup_metric_utils", |
| 87 "//components/strings", | 86 "//components/strings", |
| 88 "//components/sync_driver", | 87 "//components/sync_driver", |
| 89 "//components/tracing", | 88 "//components/tracing", |
| 90 "//components/translate/content/browser", | 89 "//components/translate/content/browser", |
| 91 "//components/translate/content/common", | 90 "//components/translate/content/common", |
| 92 "//components/translate/content/renderer", | 91 "//components/translate/content/renderer", |
| 93 "//components/translate/core/browser", | 92 "//components/translate/core/browser", |
| 94 "//components/translate/core/common", | 93 "//components/translate/core/common", |
| 95 "//components/ui/zoom:ui_zoom", | 94 "//components/ui/zoom:ui_zoom", |
| 95 "//components/update_client", |
| 96 "//components/url_fixer", | 96 "//components/url_fixer", |
| 97 "//components/url_matcher", | 97 "//components/url_matcher", |
| 98 "//components/user_manager", | 98 "//components/user_manager", |
| 99 "//components/user_prefs", | 99 "//components/user_prefs", |
| 100 "//components/variations", | 100 "//components/variations", |
| 101 "//components/visitedlink/browser", | 101 "//components/visitedlink/browser", |
| 102 "//components/visitedlink/common", | 102 "//components/visitedlink/common", |
| 103 "//components/visitedlink/renderer", | 103 "//components/visitedlink/renderer", |
| 104 "//components/wallpaper", | 104 "//components/wallpaper", |
| 105 "//components/web_cache/browser", | 105 "//components/web_cache/browser", |
| (...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 258 #'breakpad/app/crash_keys_win_unittest.cc', | 258 #'breakpad/app/crash_keys_win_unittest.cc', |
| 259 | 259 |
| 260 # Precache tests need these defines. | 260 # Precache tests need these defines. |
| 261 #configs += [ "//components/precache/core:precache_config" ] | 261 #configs += [ "//components/precache/core:precache_config" ] |
| 262 | 262 |
| 263 if (toolkit_views) { | 263 if (toolkit_views) { |
| 264 # TODO(GYP) enable this as above. | 264 # TODO(GYP) enable this as above. |
| 265 #deps += [ "//components/constrained_window:unit_tests" ] | 265 #deps += [ "//components/constrained_window:unit_tests" ] |
| 266 } | 266 } |
| 267 } | 267 } |
| OLD | NEW |