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

Side by Side Diff: components/BUILD.gn

Issue 1049423002: Move StoragePartitionHttpCacheRemover to browsing_data/ components. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: one more dispcrepancy in build file fixed Created 5 years, 8 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
« no previous file with comments | « chrome/chrome_browser.gypi ('k') | components/OWNERS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 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
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
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 }
OLDNEW
« no previous file with comments | « chrome/chrome_browser.gypi ('k') | components/OWNERS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698