| 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 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 "update_request_task.cc", | 56 "update_request_task.cc", |
| 57 "update_request_task.h", | 57 "update_request_task.h", |
| 58 ] | 58 ] |
| 59 | 59 |
| 60 deps = [ | 60 deps = [ |
| 61 "//base", | 61 "//base", |
| 62 "//components/keyed_service/core", | 62 "//components/keyed_service/core", |
| 63 "//components/offline_pages/core", | 63 "//components/offline_pages/core", |
| 64 "//components/offline_pages/core:switches", | 64 "//components/offline_pages/core:switches", |
| 65 "//net", | 65 "//net", |
| 66 "//skia", |
| 66 "//sql:sql", | 67 "//sql:sql", |
| 67 "//url", | 68 "//url", |
| 68 ] | 69 ] |
| 69 } | 70 } |
| 70 | 71 |
| 71 static_library("test_support") { | 72 static_library("test_support") { |
| 72 testonly = true | 73 testonly = true |
| 73 sources = [ | 74 sources = [ |
| 74 "network_quality_provider_stub.cc", | 75 "network_quality_provider_stub.cc", |
| 75 "network_quality_provider_stub.h", | 76 "network_quality_provider_stub.h", |
| 77 "offliner.h", |
| 76 "offliner_stub.cc", | 78 "offliner_stub.cc", |
| 77 "offliner_stub.h", | 79 "offliner_stub.h", |
| 78 "request_coordinator_stub_taco.cc", | 80 "request_coordinator_stub_taco.cc", |
| 79 "request_coordinator_stub_taco.h", | 81 "request_coordinator_stub_taco.h", |
| 80 "request_queue_in_memory_store.cc", | 82 "request_queue_in_memory_store.cc", |
| 81 "request_queue_in_memory_store.h", | 83 "request_queue_in_memory_store.h", |
| 82 "scheduler_stub.cc", | 84 "scheduler_stub.cc", |
| 83 "scheduler_stub.h", | 85 "scheduler_stub.h", |
| 84 ] | 86 ] |
| 85 | 87 |
| (...skipping 30 matching lines...) Expand all Loading... |
| 116 ":test_support", | 118 ":test_support", |
| 117 "//base", | 119 "//base", |
| 118 "//base/test:test_support", | 120 "//base/test:test_support", |
| 119 "//components/offline_pages/core", | 121 "//components/offline_pages/core", |
| 120 "//components/offline_pages/core:switches", | 122 "//components/offline_pages/core:switches", |
| 121 "//sql:sql", | 123 "//sql:sql", |
| 122 "//testing/gtest", | 124 "//testing/gtest", |
| 123 "//url", | 125 "//url", |
| 124 ] | 126 ] |
| 125 } | 127 } |
| OLD | NEW |