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

Unified Diff: components/contextual_suggestions/BUILD.gn

Issue 2965173002: Add ContextualSuggestionsService to Omnibox (Closed)
Patch Set: Initial component creation Created 3 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/contextual_suggestions/BUILD.gn
diff --git a/components/contextual_suggestions/BUILD.gn b/components/contextual_suggestions/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..585a8caa5fd31e4d503fcac77c62c3bb545aa841
--- /dev/null
+++ b/components/contextual_suggestions/BUILD.gn
@@ -0,0 +1,23 @@
+# Copyright 2014 The Chromium Authors. All rights reserved.
Marc Treib 2017/07/06 08:32:20 2017
gcomanici 2017/07/06 15:34:17 Done.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+static_library("contextual_suggestions") {
+ sources = [
+ "contextual_suggestions_service.cc",
+ "contextual_suggestions_service.h",
+ ]
+ public_deps = [
+ "//net",
+ "//url",
+ ]
+ deps = [
+ "//base",
+ "//components/data_use_measurement/core",
+ "//components/keyed_service/core",
+ "//components/search_engines",
+ "//components/signin/core/browser",
+ "//components/variations/net",
+ "//google_apis",
Marc Treib 2017/07/06 08:32:20 Are all these actually needed (yet)?
gcomanici 2017/07/06 15:34:17 I am not very familiar with BUILD.gn files, so I a
Marc Treib 2017/07/06 16:02:45 No, I'm not aware of a better approach. I was most
+ ]
+}

Powered by Google App Engine
This is Rietveld 408576698