| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 static_library("content") { | 5 static_library("content") { |
| 6 sources = [ | 6 sources = [ |
| 7 "precache_manager.cc", | 7 "precache_manager.cc", |
| 8 "precache_manager.h", | 8 "precache_manager.h", |
| 9 ] | 9 ] |
| 10 | 10 |
| (...skipping 21 matching lines...) Expand all Loading... |
| 32 sources = [ | 32 sources = [ |
| 33 "precache_manager_unittest.cc", | 33 "precache_manager_unittest.cc", |
| 34 ] | 34 ] |
| 35 deps = [ | 35 deps = [ |
| 36 ":content", | 36 ":content", |
| 37 "//base", | 37 "//base", |
| 38 "//base/test:test_support", | 38 "//base/test:test_support", |
| 39 "//components/history/core/browser", | 39 "//components/history/core/browser", |
| 40 "//components/precache/core", | 40 "//components/precache/core", |
| 41 "//components/precache/core:proto", | 41 "//components/precache/core:proto", |
| 42 "//components/variations:test_support", |
| 42 "//content/public/browser", | 43 "//content/public/browser", |
| 43 "//content/test:test_support", | 44 "//content/test:test_support", |
| 44 "//net:test_support", | 45 "//net:test_support", |
| 45 "//sql", | 46 "//sql", |
| 46 "//testing/gmock", | 47 "//testing/gmock", |
| 47 "//testing/gtest", | 48 "//testing/gtest", |
| 48 ] | 49 ] |
| 49 } | 50 } |
| OLD | NEW |