Chromium Code Reviews| 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
|
| + ] |
| +} |