| Index: components/offline_pages/content/background_loader/BUILD.gn
|
| diff --git a/components/offline_pages/content/background_loader/BUILD.gn b/components/offline_pages/content/background_loader/BUILD.gn
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..9e6aaeda9d37ba255c97a8ee690d4433daa34788
|
| --- /dev/null
|
| +++ b/components/offline_pages/content/background_loader/BUILD.gn
|
| @@ -0,0 +1,32 @@
|
| +# 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")
|
| +}
|
| +
|
| +source_set("background_loader") {
|
| + sources = [
|
| + "background_loader_contents.cc",
|
| + "background_loader_contents.h",
|
| + ]
|
| +
|
| + deps = [
|
| + "//content/public/browser",
|
| + "//url",
|
| + ]
|
| +}
|
| +
|
| +source_set("unit_tests") {
|
| + testonly = true
|
| + sources = [
|
| + "background_loader_contents_unittest.cc",
|
| + ]
|
| + deps = [
|
| + ":background_loader",
|
| + "//base",
|
| + "//content/test:test_support",
|
| + "//testing/gtest",
|
| + ]
|
| +}
|
|
|