blob: 2daac70af7d4dd2ac96550bba2b233f19d3598d8 [file] [log] [blame]
Avi Drissman8ba1bad2022-09-13 19:22:361# Copyright 2021 The Chromium Authors
Evan Staded7058482021-03-25 14:47:532# Use of this source code is governed by a BSD-style license that can be
3# found in the LICENSE file.
4
5static_library("background_fetch") {
6 sources = [
7 "background_fetch_delegate_base.cc",
8 "background_fetch_delegate_base.h",
9 "download_client.cc",
10 "download_client.h",
11 "job_details.cc",
12 "job_details.h",
13 ]
14
15 deps = [
16 "//base",
17 "//components/content_settings/core/common",
18 "//components/download/public/background_service:public",
19 "//content/public/browser",
20 "//mojo/public/cpp/bindings",
21 "//services/network/public/mojom:url_loader_base",
22 "//third_party/blink/public/mojom:mojom_platform_headers",
23 "//ui/gfx",
24 ]
25}