| 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 "add_request_task.cc", | 11 "add_request_task.cc", |
| 12 "add_request_task.h", | 12 "add_request_task.h", |
| 13 "change_requests_state_task.cc", | 13 "change_requests_state_task.cc", |
| 14 "change_requests_state_task.h", | 14 "change_requests_state_task.h", |
| 15 "connection_notifier.cc", |
| 16 "connection_notifier.h", |
| 15 "device_conditions.h", | 17 "device_conditions.h", |
| 16 "get_requests_task.cc", | 18 "get_requests_task.cc", |
| 17 "get_requests_task.h", | 19 "get_requests_task.h", |
| 18 "mark_attempt_aborted_task.cc", | 20 "mark_attempt_aborted_task.cc", |
| 19 "mark_attempt_aborted_task.h", | 21 "mark_attempt_aborted_task.h", |
| 20 "mark_attempt_completed_task.cc", | 22 "mark_attempt_completed_task.cc", |
| 21 "mark_attempt_completed_task.h", | 23 "mark_attempt_completed_task.h", |
| 22 "mark_attempt_started_task.cc", | 24 "mark_attempt_started_task.cc", |
| 23 "mark_attempt_started_task.h", | 25 "mark_attempt_started_task.h", |
| 24 "offliner.h", | 26 "offliner.h", |
| (...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 104 ":background_offliner", | 106 ":background_offliner", |
| 105 ":test_support", | 107 ":test_support", |
| 106 "//base", | 108 "//base", |
| 107 "//base/test:test_support", | 109 "//base/test:test_support", |
| 108 "//components/offline_pages:offline_pages", | 110 "//components/offline_pages:offline_pages", |
| 109 "//components/offline_pages:switches", | 111 "//components/offline_pages:switches", |
| 110 "//testing/gtest", | 112 "//testing/gtest", |
| 111 "//url", | 113 "//url", |
| 112 ] | 114 ] |
| 113 } | 115 } |
| OLD | NEW |