naiveproxy/components/web_cache/browser/BUILD.gn
2018-12-09 21:59:24 -05:00

36 lines
801 B
Plaintext

# 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",
]
}