# Copyright 2014 The Chromium Authors
# 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",
]
deps = [
"//base",
"//components/prefs",
"//components/web_cache/public/mojom",
"//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",
]
}