mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 06:16:30 +03:00
36 lines
801 B
Plaintext
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",
|
|
]
|
|
}
|