Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(274)

Side by Side Diff: components/BUILD.gn

Issue 528363002: Move webCacheManager to //components. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add OWNERS. Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
87 "//components/translate/core/browser", 87 "//components/translate/core/browser",
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_cache/browser",
98 "//components/web_cache/common",
99 "//components/web_cache/renderer",
97 "//components/web_modal", 100 "//components/web_modal",
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" ]
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
163 "//components/search_provider_logos", # Should work, needs checking. 166 "//components/search_provider_logos", # Should work, needs checking.
164 "//components/sessions", # Blocked on content. 167 "//components/sessions", # Blocked on content.
165 "//components/signin/core/browser", # Should work, needs checking. 168 "//components/signin/core/browser", # Should work, needs checking.
166 "//components/translate/content/browser", # Blocked on content. 169 "//components/translate/content/browser", # Blocked on content.
167 "//components/translate/content/common", # Blocked on content. 170 "//components/translate/content/common", # Blocked on content.
168 "//components/translate/content/renderer", # Blocked on content. 171 "//components/translate/content/renderer", # Blocked on content.
169 "//components/user_prefs", # Blocked on content. 172 "//components/user_prefs", # Blocked on content.
170 "//components/visitedlink/browser", # Blocked on content. 173 "//components/visitedlink/browser", # Blocked on content.
171 "//components/visitedlink/common", # Blocked on content. 174 "//components/visitedlink/common", # Blocked on content.
172 "//components/visitedlink/renderer", # Blocked on blink 175 "//components/visitedlink/renderer", # Blocked on blink
176 "//components/web_cache/browser", # Blocked on content.
erikwright (departed) 2014/09/08 18:17:49 and blink?
Xi Han 2014/09/08 18:52:22 You are right, added, thanks.
177 "//components/web_cache/renderer", # Blocked on content.
erikwright (departed) 2014/09/08 18:17:49 and blink?
Xi Han 2014/09/08 18:52:22 Added.
173 "//components/web_modal", # Blocked on content. 178 "//components/web_modal", # Blocked on content.
174 ] 179 ]
175 } 180 }
176 181
177 if (!is_ios && !is_android) { 182 if (!is_ios && !is_android) {
178 deps += [ 183 deps += [
179 "//components/copresence", 184 "//components/copresence",
180 "//components/storage_monitor", 185 "//components/storage_monitor",
181 ] 186 ]
182 } 187 }
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
217 ] 222 ]
218 223
219 # TODO(GYP) need this target. 224 # TODO(GYP) need this target.
220 #'breakpad/app/crash_keys_win_unittest.cc', 225 #'breakpad/app/crash_keys_win_unittest.cc',
221 226
222 # Precache tests need these defines. 227 # Precache tests need these defines.
223 #configs += [ "//components/precache/core:precache_config" ] 228 #configs += [ "//components/precache/core:precache_config" ]
224 } 229 }
225 230
226 } 231 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698