Index: components/precache/content/BUILD.gn |
diff --git a/components/precache/content/BUILD.gn b/components/precache/content/BUILD.gn |
new file mode 100644 |
index 0000000000000000000000000000000000000000..5558ac8221e41f81418b82b1fb0ca48335fd99ea |
--- /dev/null |
+++ b/components/precache/content/BUILD.gn |
@@ -0,0 +1,21 @@ |
+# Copyright 2014 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. |
+ |
+static_library("content") { |
+ sources = [ |
+ "precache_manager.cc", |
+ "precache_manager.h", |
+ "precache_manager_factory.cc", |
+ "precache_manager_factory.h", |
+ ] |
+ |
+ configs += [ "//components/precache/core:precache_config" ] |
+ |
+ deps = [ |
+ "//base", |
+ "//components/precache/core", |
+ "//content/public/browser", |
+ "//url", |
+ ] |
+} |