| 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 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 52 "save_page_request.cc", | 52 "save_page_request.cc", |
| 53 "save_page_request.h", | 53 "save_page_request.h", |
| 54 "scheduler.h", | 54 "scheduler.h", |
| 55 "update_request_task.cc", | 55 "update_request_task.cc", |
| 56 "update_request_task.h", | 56 "update_request_task.h", |
| 57 ] | 57 ] |
| 58 | 58 |
| 59 deps = [ | 59 deps = [ |
| 60 "//base", | 60 "//base", |
| 61 "//components/keyed_service/core", | 61 "//components/keyed_service/core", |
| 62 "//components/offline_pages:offline_pages", | |
| 63 "//components/offline_pages:switches", | |
| 64 "//components/offline_pages/core", | 62 "//components/offline_pages/core", |
| 63 "//components/offline_pages/core:switches", |
| 65 "//net", | 64 "//net", |
| 66 "//sql:sql", | 65 "//sql:sql", |
| 67 "//url", | 66 "//url", |
| 68 ] | 67 ] |
| 69 } | 68 } |
| 70 | 69 |
| 71 static_library("test_support") { | 70 static_library("test_support") { |
| 72 testonly = true | 71 testonly = true |
| 73 sources = [ | 72 sources = [ |
| 74 "network_quality_provider_stub.cc", | 73 "network_quality_provider_stub.cc", |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 108 "request_queue_store_unittest.cc", | 107 "request_queue_store_unittest.cc", |
| 109 "request_queue_unittest.cc", | 108 "request_queue_unittest.cc", |
| 110 "save_page_request_unittest.cc", | 109 "save_page_request_unittest.cc", |
| 111 ] | 110 ] |
| 112 | 111 |
| 113 deps = [ | 112 deps = [ |
| 114 ":background_offliner", | 113 ":background_offliner", |
| 115 ":test_support", | 114 ":test_support", |
| 116 "//base", | 115 "//base", |
| 117 "//base/test:test_support", | 116 "//base/test:test_support", |
| 118 "//components/offline_pages:offline_pages", | 117 "//components/offline_pages/core", |
| 119 "//components/offline_pages:switches", | 118 "//components/offline_pages/core:switches", |
| 120 "//testing/gtest", | 119 "//testing/gtest", |
| 121 "//url", | 120 "//url", |
| 122 ] | 121 ] |
| 123 } | 122 } |
| OLD | NEW |