blob: c3329b05bfe1dd6b251981dd1854891303143c25 [file] [log] [blame]
# Copyright 2014 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
static_library("browser") {
sources = [
"web_cache_manager.cc",
"web_cache_manager.h",
]
configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
deps = [
"//base",
"//components/prefs",
"//components/web_cache/public/interfaces",
"//content/public/browser",
"//content/public/common",
"//services/service_manager/public/cpp",
"//third_party/blink/public:blink_headers",
]
}
source_set("unit_tests") {
testonly = true
sources = [
"web_cache_manager_unittest.cc",
]
deps = [
":browser",
"//base",
"//content/test:test_support",
"//testing/gtest",
]
}