Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(75)

Unified Diff: components/precache/content/BUILD.gn

Issue 393193002: Add search_engines and precache components to GN build. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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",
+ ]
+}

Powered by Google App Engine
This is Rietveld 408576698