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", | 7 "conditional_cache_counting_helper.cc", |
8 "conditional_cache_counting_helper.h", | 8 "conditional_cache_counting_helper.h", |
9 "conditional_cache_deletion_helper.cc", | |
10 "conditional_cache_deletion_helper.h", | |
11 "storage_partition_http_cache_data_remover.cc", | |
12 "storage_partition_http_cache_data_remover.h", | |
13 ] | 9 ] |
14 | 10 |
15 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 11 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
16 | 12 |
17 deps = [ | 13 deps = [ |
18 "//base", | 14 "//base", |
19 "//content/public/browser", | 15 "//content/public/browser", |
20 "//net", | 16 "//net", |
21 ] | 17 ] |
22 } | 18 } |
OLD | NEW |