Chromium Code Reviews| Index: components/ntp_snippets/offline_pages/BUILD.gn |
| diff --git a/components/ntp_snippets/offline_pages/BUILD.gn b/components/ntp_snippets/offline_pages/BUILD.gn |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..b33725b069405b019b4251a1b53262fd5e93c52c |
| --- /dev/null |
| +++ b/components/ntp_snippets/offline_pages/BUILD.gn |
| @@ -0,0 +1,18 @@ |
| +# Copyright 2016 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. |
| + |
| +# GYP: //components/ntp_snippets.gypi:offline_page_suggestions |
| +static_library("offline_page_suggestions") { |
|
Bernhard Bauer
2016/07/14 18:47:43
This should probably be a source_set.
Philipp Keck
2016/07/15 09:08:42
Done.
|
| + sources = [ |
| + "offline_page_suggestions_provider.cc", |
| + "offline_page_suggestions_provider.h", |
| + ] |
| + |
| + deps = [ |
| + "//base", |
| + "//components/keyed_service/core", |
| + "//components/ntp_snippets", |
| + "//components/offline_pages", |
| + ] |
| +} |