OLD | NEW |
1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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("content") { | 5 static_library("content") { |
6 sources = [ | 6 sources = [ |
| 7 "conditional_cache_counting_helper.cc", |
| 8 "conditional_cache_counting_helper.h", |
7 "conditional_cache_deletion_helper.cc", | 9 "conditional_cache_deletion_helper.cc", |
8 "conditional_cache_deletion_helper.h", | 10 "conditional_cache_deletion_helper.h", |
9 "storage_partition_http_cache_data_remover.cc", | 11 "storage_partition_http_cache_data_remover.cc", |
10 "storage_partition_http_cache_data_remover.h", | 12 "storage_partition_http_cache_data_remover.h", |
11 ] | 13 ] |
12 | 14 |
13 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 15 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
14 | 16 |
15 deps = [ | 17 deps = [ |
16 "//base", | 18 "//base", |
17 "//content/public/browser", | 19 "//content/public/browser", |
18 "//net", | 20 "//net", |
19 ] | 21 ] |
20 } | 22 } |
OLD | NEW |