Avi Drissman | 8ba1bad | 2022-09-13 19:22:36 | [diff] [blame] | 1 | # Copyright 2021 The Chromium Authors |
Evan Stade | d705848 | 2021-03-25 14:47:53 | [diff] [blame] | 2 | # Use of this source code is governed by a BSD-style license that can be |
| 3 | # found in the LICENSE file. |
| 4 | |
| 5 | static_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 | } |