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

Side by Side Diff: components/browsing_data/BUILD.gn

Issue 2084903002: Moved BrowsingDataCounter and part of BrowsingDataCounterUtils to components. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed deps Created 4 years, 6 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 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 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 static_library("browsing_data") { 5 static_library("browsing_data") {
6 output_name = "browsing_data" 6 output_name = "browsing_data"
7 sources = [ 7 sources = [
8 "browsing_data_utils.cc",
9 "browsing_data_utils.h",
8 "conditional_cache_deletion_helper.cc", 10 "conditional_cache_deletion_helper.cc",
9 "conditional_cache_deletion_helper.h", 11 "conditional_cache_deletion_helper.h",
12 "counters/browsing_data_counter.cc",
13 "counters/browsing_data_counter.h",
10 "storage_partition_http_cache_data_remover.cc", 14 "storage_partition_http_cache_data_remover.cc",
11 "storage_partition_http_cache_data_remover.h", 15 "storage_partition_http_cache_data_remover.h",
12 ] 16 ]
13 17
14 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] 18 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
15 19
16 deps = [ 20 deps = [
17 "//base", 21 "//base",
22 "//components/prefs:prefs",
18 "//content/public/browser", 23 "//content/public/browser",
19 "//net", 24 "//net",
20 ] 25 ]
21 } 26 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698