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.gypi:background_offliner |
10 static_library("background_offliner") { | 10 static_library("background_offliner") { |
11 sources = [ | 11 sources = [ |
12 "device_conditions.h", | 12 "device_conditions.h", |
13 "offliner.h", | 13 "offliner.h", |
14 "offliner_factory.h", | 14 "offliner_factory.h", |
15 "offliner_policy.h", | 15 "offliner_policy.h", |
16 "request_coordinator.cc", | 16 "request_coordinator.cc", |
17 "request_coordinator.h", | 17 "request_coordinator.h", |
18 "request_coordinator_event_logger.cc", | 18 "request_coordinator_event_logger.cc", |
19 "request_coordinator_event_logger.h", | 19 "request_coordinator_event_logger.h", |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
54 | 54 |
55 deps = [ | 55 deps = [ |
56 ":background_offliner", | 56 ":background_offliner", |
57 "//base", | 57 "//base", |
58 "//base/test:test_support", | 58 "//base/test:test_support", |
59 "//components/offline_pages:offline_pages", | 59 "//components/offline_pages:offline_pages", |
60 "//testing/gtest", | 60 "//testing/gtest", |
61 "//url", | 61 "//url", |
62 ] | 62 ] |
63 } | 63 } |
OLD | NEW |