blob: 40112efe40d2ab9db3994f4add7f7da2f125997e [file] [log] [blame]
# Copyright 2017 The Chromium Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
if (is_android) {
import("//build/config/android/rules.gni")
}
import("//third_party/protobuf/proto_library.gni")
static_library("prefetch") {
sources = [
"prefetch_service.h",
"prefetch_service_impl.cc",
"prefetch_service_impl.h",
"store/prefetch_store.cc",
"store/prefetch_store.h",
]
deps = [
"//base",
"//components/download/public/background_service:public",
"//components/gcm_driver",
"//components/gcm_driver/common",
"//components/image_fetcher/core",
"//components/keyed_service/core",
"//components/offline_pages/core",
"//components/offline_pages/core:switches",
"//components/offline_pages/task",
"//components/prefs",
"//components/variations:variations",
"//components/version_info",
"//google_apis",
"//net:net",
"//services/network/public/cpp:cpp",
"//sql:sql",
"//url",
]
}