| Index: components/offline_pages/core/prefetch/BUILD.gn
|
| diff --git a/components/offline_pages/core/prefetch/BUILD.gn b/components/offline_pages/core/prefetch/BUILD.gn
|
| index 87db969a9285f9c60935c368a5f7c4c36815cb9b..85d9fcba5f06856bec8809f4051056e683447ded 100644
|
| --- a/components/offline_pages/core/prefetch/BUILD.gn
|
| +++ b/components/offline_pages/core/prefetch/BUILD.gn
|
| @@ -8,6 +8,8 @@ if (is_android) {
|
|
|
| static_library("prefetch") {
|
| sources = [
|
| + "prefetch_request_fetcher.cc",
|
| + "prefetch_request_fetcher.h",
|
| "prefetch_service.h",
|
| "prefetch_service_impl.cc",
|
| "prefetch_service_impl.h",
|
| @@ -17,6 +19,7 @@ static_library("prefetch") {
|
| "//base",
|
| "//components/keyed_service/core",
|
| "//components/offline_pages/core",
|
| + "//net:net",
|
| "//url",
|
| ]
|
| }
|
| @@ -24,12 +27,15 @@ static_library("prefetch") {
|
| source_set("unit_tests") {
|
| testonly = true
|
| sources = [
|
| + "prefetch_request_fetcher_unittest.cc",
|
| "prefetch_service_impl_unittest.cc",
|
| ]
|
|
|
| deps = [
|
| ":prefetch",
|
| "//components/offline_pages/core",
|
| + "//net:test_support",
|
| + "//testing/gmock",
|
| "//testing/gtest",
|
| "//url",
|
| ]
|
|
|