| Index: components/offline_pages/background/BUILD.gn
|
| diff --git a/components/offline_pages/background/BUILD.gn b/components/offline_pages/background/BUILD.gn
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..26d8934ee43ffab8dfa546bcd48d3be3893828d0
|
| --- /dev/null
|
| +++ b/components/offline_pages/background/BUILD.gn
|
| @@ -0,0 +1,33 @@
|
| +# Copyright 2016 The Chromium Authors. All rights reserved.
|
| +# Use of this source code is governed by a BSD-style license that can be
|
| +# found in the LICENSE file.
|
| +
|
| +if (is_android) {
|
| + import("//build/config/android/rules.gni")
|
| +}
|
| +
|
| +# GYP: //components/offline_pages/offline_pages.gypi:background_offliner
|
| +static_library("background_offliner") {
|
| + sources = [
|
| + "offliner.h",
|
| + "offliner_factory.h",
|
| + "offliner_policy.h",
|
| + "prerenderer_offliner.cc",
|
| + "prerenderer_offliner.h",
|
| + "prerenderer_offliner_factory.cc",
|
| + "prerenderer_offliner_factory.h",
|
| + "request_coordinator.cc",
|
| + "request_coordinator.h",
|
| + "request_coordinator_factory.cc",
|
| + "request_coordinator_factory.h",
|
| + "scheduler.h",
|
| + ]
|
| +
|
| + deps = [
|
| + "//base",
|
| + "//components/bookmarks/browser",
|
| + "//components/offline_pages:offline_pages",
|
| + "//net",
|
| + "//url",
|
| + ]
|
| +}
|
|
|