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 # GYP: //components/offline_pages/offline_pages.gypi:background_offliner | 9 # GYP: //components/offline_pages/offline_pages.gypi:background_offliner |
10 static_library("background_offliner") { | 10 static_library("background_offliner") { |
11 sources = [ | 11 sources = [ |
12 "offliner.h", | 12 "offliner.h", |
| 13 "offliner_factory.h", |
| 14 "offliner_policy.h", |
13 "request_coordinator.cc", | 15 "request_coordinator.cc", |
14 "request_coordinator.h", | 16 "request_coordinator.h", |
15 "request_queue.cc", | 17 "request_queue.cc", |
16 "request_queue.h", | 18 "request_queue.h", |
17 "save_page_request.cc", | 19 "save_page_request.cc", |
18 "save_page_request.h", | 20 "save_page_request.h", |
19 "scheduler.h", | 21 "scheduler.h", |
20 ] | 22 ] |
21 | 23 |
22 deps = [ | 24 deps = [ |
(...skipping 11 matching lines...) Expand all Loading... |
34 ] | 36 ] |
35 | 37 |
36 deps = [ | 38 deps = [ |
37 ":background_offliner", | 39 ":background_offliner", |
38 "//base", | 40 "//base", |
39 "//components/offline_pages:offline_pages", | 41 "//components/offline_pages:offline_pages", |
40 "//testing/gtest", | 42 "//testing/gtest", |
41 "//url", | 43 "//url", |
42 ] | 44 ] |
43 } | 45 } |
OLD | NEW |