OLD | NEW |
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 } |
OLD | NEW |