| 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", |
| 9 "content_suggestion.h", |
| 10 "content_suggestion_category.h", |
| 11 "content_suggestions_provider_type.h", |
| 8 "ntp_snippet.cc", | 12 "ntp_snippet.cc", |
| 9 "ntp_snippet.h", | 13 "ntp_snippet.h", |
| 10 "ntp_snippets_constants.cc", | 14 "ntp_snippets_constants.cc", |
| 11 "ntp_snippets_constants.h", | 15 "ntp_snippets_constants.h", |
| 12 "ntp_snippets_database.cc", | 16 "ntp_snippets_database.cc", |
| 13 "ntp_snippets_database.h", | 17 "ntp_snippets_database.h", |
| 14 "ntp_snippets_fetcher.cc", | 18 "ntp_snippets_fetcher.cc", |
| 15 "ntp_snippets_fetcher.h", | 19 "ntp_snippets_fetcher.h", |
| 16 "ntp_snippets_scheduler.h", | 20 "ntp_snippets_scheduler.h", |
| 17 "ntp_snippets_service.cc", | 21 "ntp_snippets_service.cc", |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 62 "//components/image_fetcher", | 66 "//components/image_fetcher", |
| 63 "//components/leveldb_proto:test_support", | 67 "//components/leveldb_proto:test_support", |
| 64 "//components/signin/core/browser:test_support", | 68 "//components/signin/core/browser:test_support", |
| 65 "//components/sync_driver:test_support", | 69 "//components/sync_driver:test_support", |
| 66 "//components/variations", | 70 "//components/variations", |
| 67 "//net:test_support", | 71 "//net:test_support", |
| 68 "//testing/gtest", | 72 "//testing/gtest", |
| 69 "//third_party/icu/", | 73 "//third_party/icu/", |
| 70 ] | 74 ] |
| 71 } | 75 } |
| OLD | NEW |