Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | |
| 2 # Use of this source code is governed by a BSD-style license that can be | |
| 3 # found in the LICENSE file. | |
| 4 | |
| 5 # GYP: //components/ntp_snippets.gypi:offline_page_suggestions | |
| 6 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.
| |
| 7 sources = [ | |
| 8 "offline_page_suggestions_provider.cc", | |
| 9 "offline_page_suggestions_provider.h", | |
| 10 ] | |
| 11 | |
| 12 deps = [ | |
| 13 "//base", | |
| 14 "//components/keyed_service/core", | |
| 15 "//components/ntp_snippets", | |
| 16 "//components/offline_pages", | |
| 17 ] | |
| 18 } | |
| OLD | NEW |