OLD | NEW |
(Empty) | |
| 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 |
| 3 # found in the LICENSE file. |
| 4 |
| 5 if (is_android) { |
| 6 import("//build/config/android/rules.gni") |
| 7 } |
| 8 |
| 9 # GYP: //components/offline_pages/offline_pages.gypi:background_offliner |
| 10 static_library("background_offliner") { |
| 11 sources = [ |
| 12 "offliner.h", |
| 13 "offliner_factory.h", |
| 14 "offliner_policy.h", |
| 15 "prerenderer_offliner.cc", |
| 16 "prerenderer_offliner.h", |
| 17 "prerenderer_offliner_factory.cc", |
| 18 "prerenderer_offliner_factory.h", |
| 19 "request_coordinator.cc", |
| 20 "request_coordinator.h", |
| 21 "request_coordinator_factory.cc", |
| 22 "request_coordinator_factory.h", |
| 23 "scheduler.h", |
| 24 ] |
| 25 |
| 26 deps = [ |
| 27 "//base", |
| 28 "//components/bookmarks/browser", |
| 29 "//components/offline_pages:offline_pages", |
| 30 "//net", |
| 31 "//url", |
| 32 ] |
| 33 } |
OLD | NEW |