OLD | NEW |
---|---|
(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 } | |
OLD | NEW |