| 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 # GYP version: components/ntp_snippets.gypi:ntp_snippets | 5 # GYP version: components/ntp_snippets.gypi:ntp_snippets |
| 6 source_set("ntp_snippets") { | 6 source_set("ntp_snippets") { |
| 7 sources = [ | 7 sources = [ |
| 8 "content_suggestion.cc", | 8 "content_suggestion.cc", |
| 9 "content_suggestion.h", | 9 "content_suggestion.h", |
| 10 "content_suggestion_category.h", | 10 "content_suggestion_category.h", |
| 11 "content_suggestions_provider.h", |
| 11 "content_suggestions_provider_type.h", | 12 "content_suggestions_provider_type.h", |
| 13 "content_suggestions_service.cc", |
| 14 "content_suggestions_service.h", |
| 12 "ntp_snippet.cc", | 15 "ntp_snippet.cc", |
| 13 "ntp_snippet.h", | 16 "ntp_snippet.h", |
| 14 "ntp_snippets_constants.cc", | 17 "ntp_snippets_constants.cc", |
| 15 "ntp_snippets_constants.h", | 18 "ntp_snippets_constants.h", |
| 16 "ntp_snippets_database.cc", | 19 "ntp_snippets_database.cc", |
| 17 "ntp_snippets_database.h", | 20 "ntp_snippets_database.h", |
| 18 "ntp_snippets_fetcher.cc", | 21 "ntp_snippets_fetcher.cc", |
| 19 "ntp_snippets_fetcher.h", | 22 "ntp_snippets_fetcher.h", |
| 20 "ntp_snippets_scheduler.h", | 23 "ntp_snippets_scheduler.h", |
| 21 "ntp_snippets_service.cc", | 24 "ntp_snippets_service.cc", |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 66 "//components/image_fetcher", | 69 "//components/image_fetcher", |
| 67 "//components/leveldb_proto:test_support", | 70 "//components/leveldb_proto:test_support", |
| 68 "//components/signin/core/browser:test_support", | 71 "//components/signin/core/browser:test_support", |
| 69 "//components/sync_driver:test_support", | 72 "//components/sync_driver:test_support", |
| 70 "//components/variations", | 73 "//components/variations", |
| 71 "//net:test_support", | 74 "//net:test_support", |
| 72 "//testing/gtest", | 75 "//testing/gtest", |
| 73 "//third_party/icu/", | 76 "//third_party/icu/", |
| 74 ] | 77 ] |
| 75 } | 78 } |
| OLD | NEW |