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

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

Issue 2556363003: Refactor cache counting into a separate helper class (Closed)
Patch Set: cleanup Created 4 years 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 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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698