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

Side by Side 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 unified diff | Download patch
OLDNEW
(Empty)
1 # 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.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 static_library("contextual_suggestions") {
6 sources = [
7 "contextual_suggestions_service.cc",
8 "contextual_suggestions_service.h",
9 ]
10 public_deps = [
11 "//net",
12 "//url",
13 ]
14 deps = [
15 "//base",
16 "//components/data_use_measurement/core",
17 "//components/keyed_service/core",
18 "//components/search_engines",
19 "//components/signin/core/browser",
20 "//components/variations/net",
21 "//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
22 ]
23 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698