OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 import("//build/config/ui.gni") | 5 import("//build/config/ui.gni") |
6 | 6 |
7 if (is_android) { | 7 if (is_android) { |
8 import("//build/config/android/config.gni") | 8 import("//build/config/android/config.gni") |
9 import("//build/config/android/rules.gni") | 9 import("//build/config/android/rules.gni") |
10 } | 10 } |
11 | 11 |
12 # GYP version: components/ntp_snippets.gypi:ntp_snippets | 12 # GYP version: components/ntp_snippets.gypi:ntp_snippets |
13 static_library("ntp_snippets") { | 13 static_library("ntp_snippets") { |
14 sources = [ | 14 sources = [ |
15 "bookmarks/bookmark_last_visit_date_helper.cc", | 15 "bookmarks/bookmark_last_visit_date_helper.cc", |
16 "bookmarks/bookmark_last_visit_date_helper.h", | 16 "bookmarks/bookmark_last_visit_date_helper.h", |
| 17 "bookmarks/bookmark_suggestions_provider.cc", |
| 18 "bookmarks/bookmark_suggestions_provider.h", |
17 "content_suggestion.cc", | 19 "content_suggestion.cc", |
18 "content_suggestion.h", | 20 "content_suggestion.h", |
19 "content_suggestions_category.h", | 21 "content_suggestions_category.h", |
20 "content_suggestions_category_status.cc", | 22 "content_suggestions_category_status.cc", |
21 "content_suggestions_category_status.h", | 23 "content_suggestions_category_status.h", |
22 "content_suggestions_provider.cc", | 24 "content_suggestions_provider.cc", |
23 "content_suggestions_provider.h", | 25 "content_suggestions_provider.h", |
24 "content_suggestions_service.cc", | 26 "content_suggestions_service.cc", |
25 "content_suggestions_service.h", | 27 "content_suggestions_service.h", |
26 "ntp_snippet.cc", | 28 "ntp_snippet.cc", |
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
103 "//components/leveldb_proto:test_support", | 105 "//components/leveldb_proto:test_support", |
104 "//components/signin/core/browser:test_support", | 106 "//components/signin/core/browser:test_support", |
105 "//components/signin/core/common", | 107 "//components/signin/core/common", |
106 "//components/sync_driver:test_support", | 108 "//components/sync_driver:test_support", |
107 "//components/variations", | 109 "//components/variations", |
108 "//net:test_support", | 110 "//net:test_support", |
109 "//testing/gtest", | 111 "//testing/gtest", |
110 "//third_party/icu/", | 112 "//third_party/icu/", |
111 ] | 113 ] |
112 } | 114 } |
OLD | NEW |