Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / components / precache / content / BUILD.gn
blob561c445bb03d08c6599476c36e4453c67afac10f
1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
5 source_set("content") {
6   sources = [
7     "precache_manager.cc",
8     "precache_manager.h",
9   ]
11   configs += [ "//components/precache/core:precache_config" ]
13   deps = [
14     "//base",
15     "//components/precache/core",
16     "//components/sync_driver",
17     "//content/public/browser",
18     "//url",
19   ]
22 source_set("unit_tests") {
23   testonly = true
24   sources = [
25     "precache_manager_unittest.cc",
26   ]
27   deps = [
28     ":content",
29     "//testing/gmock",
30     "//testing/gtest",
31   ]