| 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 static_library("internal") { | 10 static_library("internal") { |
| 11 visibility = [ | 11 visibility = [ |
| 12 ":*", | 12 ":*", |
| 13 "//components/download", | 13 "//components/download", |
| 14 "//components/download/content", |
| 14 "//components/download/internal/test:test_support", | 15 "//components/download/internal/test:test_support", |
| 15 ] | 16 ] |
| 16 | 17 |
| 17 sources = [ | 18 sources = [ |
| 18 "config.cc", | 19 "config.cc", |
| 19 "config.h", | 20 "config.h", |
| 21 "download_driver.h", |
| 20 "download_service_impl.cc", | 22 "download_service_impl.cc", |
| 21 "download_service_impl.h", | 23 "download_service_impl.h", |
| 24 "driver_entry.cc", |
| 25 "driver_entry.h", |
| 22 "entry.cc", | 26 "entry.cc", |
| 23 "entry.h", | 27 "entry.h", |
| 24 "model.h", | 28 "model.h", |
| 25 "model_impl.cc", | 29 "model_impl.cc", |
| 26 "model_impl.h", | 30 "model_impl.h", |
| 27 "noop_store.cc", | 31 "noop_store.cc", |
| 28 "noop_store.h", | 32 "noop_store.h", |
| 29 "scheduler/battery_listener.cc", | 33 "scheduler/battery_listener.cc", |
| 30 "scheduler/battery_listener.h", | 34 "scheduler/battery_listener.h", |
| 31 "scheduler/network_listener.cc", | 35 "scheduler/network_listener.cc", |
| (...skipping 20 matching lines...) Expand all Loading... |
| 52 ] | 56 ] |
| 53 | 57 |
| 54 deps = [ | 58 deps = [ |
| 55 ":internal", | 59 ":internal", |
| 56 "//base/test:test_support", | 60 "//base/test:test_support", |
| 57 "//components/download/internal/test:test_support", | 61 "//components/download/internal/test:test_support", |
| 58 "//testing/gmock", | 62 "//testing/gmock", |
| 59 "//testing/gtest", | 63 "//testing/gtest", |
| 60 ] | 64 ] |
| 61 } | 65 } |
| OLD | NEW |