| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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/rules.gni") | 6 import("//build/config/android/rules.gni") |
| 7 } | 7 } |
| 8 | 8 |
| 9 static_library("background_offliner") { | 9 static_library("background_offliner") { |
| 10 sources = [ | 10 sources = [ |
| 11 "change_requests_state_task.cc", | 11 "change_requests_state_task.cc", |
| 12 "change_requests_state_task.h", | 12 "change_requests_state_task.h", |
| 13 "device_conditions.h", | 13 "device_conditions.h", |
| 14 "offliner.h", | 14 "offliner.h", |
| 15 "offliner_factory.h", | 15 "offliner_factory.h", |
| 16 "offliner_policy.h", | 16 "offliner_policy.h", |
| 17 "remove_requests_task.cc", | 17 "remove_requests_task.cc", |
| 18 "remove_requests_task.h", | 18 "remove_requests_task.h", |
| 19 "request_coordinator.cc", | 19 "request_coordinator.cc", |
| 20 "request_coordinator.h", | 20 "request_coordinator.h", |
| 21 "request_coordinator_event_logger.cc", | 21 "request_coordinator_event_logger.cc", |
| 22 "request_coordinator_event_logger.h", | 22 "request_coordinator_event_logger.h", |
| 23 "request_notifier.h", |
| 23 "request_picker.cc", | 24 "request_picker.cc", |
| 24 "request_picker.h", | 25 "request_picker.h", |
| 25 "request_queue.cc", | 26 "request_queue.cc", |
| 26 "request_queue.h", | 27 "request_queue.h", |
| 27 "request_queue_in_memory_store.cc", | 28 "request_queue_in_memory_store.cc", |
| 28 "request_queue_in_memory_store.h", | 29 "request_queue_in_memory_store.h", |
| 29 "request_queue_store.h", | 30 "request_queue_store.h", |
| 30 "request_queue_store_sql.cc", | 31 "request_queue_store_sql.cc", |
| 31 "request_queue_store_sql.h", | 32 "request_queue_store_sql.h", |
| 32 "save_page_request.cc", | 33 "save_page_request.cc", |
| (...skipping 27 matching lines...) Expand all Loading... |
| 60 | 61 |
| 61 deps = [ | 62 deps = [ |
| 62 ":background_offliner", | 63 ":background_offliner", |
| 63 "//base", | 64 "//base", |
| 64 "//base/test:test_support", | 65 "//base/test:test_support", |
| 65 "//components/offline_pages:offline_pages", | 66 "//components/offline_pages:offline_pages", |
| 66 "//testing/gtest", | 67 "//testing/gtest", |
| 67 "//url", | 68 "//url", |
| 68 ] | 69 ] |
| 69 } | 70 } |
| OLD | NEW |