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 | 6 |
7 # Collection of all components. You wouldn't link to this, but this is rather | 7 # Collection of all components. You wouldn't link to this, but this is rather |
8 # to reference the files so they can be compiled by the build system. | 8 # to reference the files so they can be compiled by the build system. |
9 group("all_components") { | 9 group("all_components") { |
10 visibility = "//:*" # Only for the root targets to bring in. | 10 visibility = "//:*" # Only for the root targets to bring in. |
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
88 "//components/translate/core/common", | 88 "//components/translate/core/common", |
89 "//components/url_fixer", | 89 "//components/url_fixer", |
90 "//components/url_matcher", | 90 "//components/url_matcher", |
91 "//components/user_manager", | 91 "//components/user_manager", |
92 "//components/user_prefs", | 92 "//components/user_prefs", |
93 "//components/variations", | 93 "//components/variations", |
94 "//components/visitedlink/browser", | 94 "//components/visitedlink/browser", |
95 "//components/visitedlink/common", | 95 "//components/visitedlink/common", |
96 "//components/visitedlink/renderer", | 96 "//components/visitedlink/renderer", |
97 "//components/web_modal", | 97 "//components/web_modal", |
98 "//components/web_cache/browser", | |
James Cook
2014/09/05 16:53:18
nit: alphabetize above web_modal
Xi Han
2014/09/05 19:39:24
Done.
| |
99 "//components/web_cache/common", | |
100 "//components/web_cache/renderer", | |
98 "//components/webdata/common", | 101 "//components/webdata/common", |
99 "//components/wifi", | 102 "//components/wifi", |
100 ] | 103 ] |
101 | 104 |
102 if (!is_win && !is_mac) { | 105 if (!is_win && !is_mac) { |
103 deps -= [ "//components/wifi" ] | 106 deps -= [ "//components/wifi" ] |
104 } | 107 } |
105 if (!is_chromeos) { | 108 if (!is_chromeos) { |
106 deps -= [ "//components/pairing" ] | 109 deps -= [ "//components/pairing" ] |
107 } | 110 } |
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
217 ] | 220 ] |
218 | 221 |
219 # TODO(GYP) need this target. | 222 # TODO(GYP) need this target. |
220 #'breakpad/app/crash_keys_win_unittest.cc', | 223 #'breakpad/app/crash_keys_win_unittest.cc', |
221 | 224 |
222 # Precache tests need these defines. | 225 # Precache tests need these defines. |
223 #configs += [ "//components/precache/core:precache_config" ] | 226 #configs += [ "//components/precache/core:precache_config" ] |
224 } | 227 } |
225 | 228 |
226 } | 229 } |
OLD | NEW |