| OLD | NEW |
| 1 # Copyright 2017 The Chromium Authors. All rights reserved. | 1 # Copyright 2017 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 if (is_android) { | 5 if (is_android) { |
| 6 import("//build/config/android/config.gni") | 6 import("//build/config/android/config.gni") |
| 7 import("//build/config/android/rules.gni") | 7 import("//build/config/android/rules.gni") |
| 8 } | 8 } |
| 9 | 9 |
| 10 source_set("public") { | 10 source_set("public") { |
| 11 sources = [ | 11 sources = [ |
| 12 "client.h", | 12 "client.h", |
| 13 "clients.h", | 13 "clients.h", |
| 14 "download_params.cc", | 14 "download_params.cc", |
| 15 "download_params.h", | 15 "download_params.h", |
| 16 "download_service.h", | 16 "download_service.h", |
| 17 "features.cc", |
| 18 "features.h", |
| 17 ] | 19 ] |
| 18 | 20 |
| 19 deps = [ | 21 deps = [ |
| 20 "//components/keyed_service/core", | 22 "//components/keyed_service/core", |
| 21 ] | 23 ] |
| 22 | 24 |
| 23 public_deps = [ | 25 public_deps = [ |
| 24 "//base", | 26 "//base", |
| 25 "//net", | 27 "//net", |
| 26 "//url", | 28 "//url", |
| 27 ] | 29 ] |
| 28 } | 30 } |
| OLD | NEW |