| Index: components/download/public/BUILD.gn
|
| diff --git a/components/download/public/BUILD.gn b/components/download/public/BUILD.gn
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..578d767334a8592035521656e8150c668a6a4402
|
| --- /dev/null
|
| +++ b/components/download/public/BUILD.gn
|
| @@ -0,0 +1,28 @@
|
| +# Copyright 2017 The Chromium Authors. All rights reserved.
|
| +# 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/config.gni")
|
| + import("//build/config/android/rules.gni")
|
| +}
|
| +
|
| +source_set("public") {
|
| + sources = [
|
| + "background_download_service.h",
|
| + "client.h",
|
| + "clients.h",
|
| + "download_params.cc",
|
| + "download_params.h",
|
| + ]
|
| +
|
| + deps = [
|
| + "//components/keyed_service/core",
|
| + ]
|
| +
|
| + public_deps = [
|
| + "//base",
|
| + "//net",
|
| + "//url",
|
| + ]
|
| +}
|
|
|