| Index: components/download/BUILD.gn
|
| diff --git a/components/download/BUILD.gn b/components/download/BUILD.gn
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..618a7055c8b42c5e6ce13d3d78d725f13dbc3d30
|
| --- /dev/null
|
| +++ b/components/download/BUILD.gn
|
| @@ -0,0 +1,26 @@
|
| +# 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")
|
| +}
|
| +
|
| +group("download") {
|
| + public_deps = [
|
| + "//components/download/public",
|
| + ]
|
| +
|
| + deps = [
|
| + "//components/download/internal",
|
| + ]
|
| +}
|
| +
|
| +group("unit_tests") {
|
| + testonly = true
|
| +
|
| + deps = [
|
| + "//components/download/internal:unit_tests",
|
| + ]
|
| +}
|
|
|