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 source_set("ntp_snippets") { | 13 source_set("ntp_snippets") { |
14 sources = [ | 14 sources = [ |
15 "content_suggestion.cc", | 15 "content_suggestion.cc", |
16 "content_suggestion.h", | 16 "content_suggestion.h", |
17 "content_suggestion_category.h", | 17 "content_suggestion_category.h", |
| 18 "content_suggestions_provider.h", |
18 "content_suggestions_provider_type.h", | 19 "content_suggestions_provider_type.h", |
| 20 "content_suggestions_service.cc", |
| 21 "content_suggestions_service.h", |
19 "ntp_snippet.cc", | 22 "ntp_snippet.cc", |
20 "ntp_snippet.h", | 23 "ntp_snippet.h", |
21 "ntp_snippets_constants.cc", | 24 "ntp_snippets_constants.cc", |
22 "ntp_snippets_constants.h", | 25 "ntp_snippets_constants.h", |
23 "ntp_snippets_database.cc", | 26 "ntp_snippets_database.cc", |
24 "ntp_snippets_database.h", | 27 "ntp_snippets_database.h", |
25 "ntp_snippets_fetcher.cc", | 28 "ntp_snippets_fetcher.cc", |
26 "ntp_snippets_fetcher.h", | 29 "ntp_snippets_fetcher.h", |
27 "ntp_snippets_scheduler.h", | 30 "ntp_snippets_scheduler.h", |
28 "ntp_snippets_service.cc", | 31 "ntp_snippets_service.cc", |
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
87 "//components/leveldb_proto:test_support", | 90 "//components/leveldb_proto:test_support", |
88 "//components/signin/core/browser:test_support", | 91 "//components/signin/core/browser:test_support", |
89 "//components/signin/core/common", | 92 "//components/signin/core/common", |
90 "//components/sync_driver:test_support", | 93 "//components/sync_driver:test_support", |
91 "//components/variations", | 94 "//components/variations", |
92 "//net:test_support", | 95 "//net:test_support", |
93 "//testing/gtest", | 96 "//testing/gtest", |
94 "//third_party/icu/", | 97 "//third_party/icu/", |
95 ] | 98 ] |
96 } | 99 } |
OLD | NEW |