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

Unified Diff: components/suggestions/BUILD.gn

Issue 410673002: [Suggestions] Moving suggestions code to a new component (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix deps 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
« no previous file with comments | « components/suggestions.gypi ('k') | components/suggestions/DEPS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/suggestions/BUILD.gn
diff --git a/components/suggestions/BUILD.gn b/components/suggestions/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..1fe2ff9b32e8371c612f28cf1300fa2dfece0ea7
--- /dev/null
+++ b/components/suggestions/BUILD.gn
@@ -0,0 +1,28 @@
+# 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("suggestions") {
+ sources = [
+ "blacklist_store.cc",
+ "blacklist_store.h",
+ "image_manager.h",
+ "suggestions_pref_names.cc",
+ "suggestions_pref_names.h",
+ "suggestions_service.cc",
+ "suggestions_service.h",
+ "suggestions_store.cc",
+ "suggestions_store.h",
+ ]
+
+ deps = [
+ "//base",
+ "//components/keyed_service/core",
+ "//components/pref_registry",
+ "//components/suggestions/proto",
+ "//components/variations",
+ "//net",
+ "//ui/gfx",
+ "//url",
+ ]
+}
« no previous file with comments | « components/suggestions.gypi ('k') | components/suggestions/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698