| 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 = [ |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 "get_requests_task.h", | 23 "get_requests_task.h", |
| 24 "initialize_store_task.cc", | 24 "initialize_store_task.cc", |
| 25 "initialize_store_task.h", | 25 "initialize_store_task.h", |
| 26 "mark_attempt_aborted_task.cc", | 26 "mark_attempt_aborted_task.cc", |
| 27 "mark_attempt_aborted_task.h", | 27 "mark_attempt_aborted_task.h", |
| 28 "mark_attempt_completed_task.cc", | 28 "mark_attempt_completed_task.cc", |
| 29 "mark_attempt_completed_task.h", | 29 "mark_attempt_completed_task.h", |
| 30 "mark_attempt_started_task.cc", | 30 "mark_attempt_started_task.cc", |
| 31 "mark_attempt_started_task.h", | 31 "mark_attempt_started_task.h", |
| 32 "offliner.h", | 32 "offliner.h", |
| 33 "offliner_factory.h", | |
| 34 "offliner_policy.h", | 33 "offliner_policy.h", |
| 35 "offliner_policy_utils.cc", | 34 "offliner_policy_utils.cc", |
| 36 "offliner_policy_utils.h", | 35 "offliner_policy_utils.h", |
| 37 "pick_request_task.cc", | 36 "pick_request_task.cc", |
| 38 "pick_request_task.h", | 37 "pick_request_task.h", |
| 39 "reconcile_task.cc", | 38 "reconcile_task.cc", |
| 40 "reconcile_task.h", | 39 "reconcile_task.h", |
| 41 "remove_requests_task.cc", | 40 "remove_requests_task.cc", |
| 42 "remove_requests_task.h", | 41 "remove_requests_task.h", |
| 43 "request_coordinator.cc", | 42 "request_coordinator.cc", |
| (...skipping 23 matching lines...) Expand all Loading... |
| 67 "//sql:sql", | 66 "//sql:sql", |
| 68 "//url", | 67 "//url", |
| 69 ] | 68 ] |
| 70 } | 69 } |
| 71 | 70 |
| 72 static_library("test_support") { | 71 static_library("test_support") { |
| 73 testonly = true | 72 testonly = true |
| 74 sources = [ | 73 sources = [ |
| 75 "network_quality_provider_stub.cc", | 74 "network_quality_provider_stub.cc", |
| 76 "network_quality_provider_stub.h", | 75 "network_quality_provider_stub.h", |
| 77 "offliner_factory_stub.cc", | |
| 78 "offliner_factory_stub.h", | |
| 79 "offliner_stub.cc", | 76 "offliner_stub.cc", |
| 80 "offliner_stub.h", | 77 "offliner_stub.h", |
| 81 "request_queue_in_memory_store.cc", | 78 "request_queue_in_memory_store.cc", |
| 82 "request_queue_in_memory_store.h", | 79 "request_queue_in_memory_store.h", |
| 83 "scheduler_stub.cc", | 80 "scheduler_stub.cc", |
| 84 "scheduler_stub.h", | 81 "scheduler_stub.h", |
| 85 ] | 82 ] |
| 86 | 83 |
| 87 deps = [ | 84 deps = [ |
| 88 ":background_offliner", | 85 ":background_offliner", |
| (...skipping 27 matching lines...) Expand all Loading... |
| 116 ":background_offliner", | 113 ":background_offliner", |
| 117 ":test_support", | 114 ":test_support", |
| 118 "//base", | 115 "//base", |
| 119 "//base/test:test_support", | 116 "//base/test:test_support", |
| 120 "//components/offline_pages/core", | 117 "//components/offline_pages/core", |
| 121 "//components/offline_pages/core:switches", | 118 "//components/offline_pages/core:switches", |
| 122 "//testing/gtest", | 119 "//testing/gtest", |
| 123 "//url", | 120 "//url", |
| 124 ] | 121 ] |
| 125 } | 122 } |
| OLD | NEW |