| 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 "ntp_snippet.cc", | 8 "ntp_snippet.cc", |
| 9 "ntp_snippet.h", | 9 "ntp_snippet.h", |
| 10 "ntp_snippets_constants.cc", | 10 "ntp_snippets_constants.cc", |
| 11 "ntp_snippets_constants.h", | 11 "ntp_snippets_constants.h", |
| 12 "ntp_snippets_database.cc", | 12 "ntp_snippets_database.cc", |
| 13 "ntp_snippets_database.h", | 13 "ntp_snippets_database.h", |
| 14 "ntp_snippets_fetcher.cc", | 14 "ntp_snippets_fetcher.cc", |
| 15 "ntp_snippets_fetcher.h", | 15 "ntp_snippets_fetcher.h", |
| 16 "ntp_snippets_scheduler.h", | 16 "ntp_snippets_scheduler.h", |
| 17 "ntp_snippets_service.cc", | 17 "ntp_snippets_service.cc", |
| 18 "ntp_snippets_service.h", | 18 "ntp_snippets_service.h", |
| 19 "pref_names.cc", | 19 "pref_names.cc", |
| 20 "pref_names.h", | 20 "pref_names.h", |
| 21 "snippet.cc", |
| 22 "snippet.h", |
| 23 "snippet_category.h", |
| 24 "snippet_provider_type.h", |
| 21 "switches.cc", | 25 "switches.cc", |
| 22 "switches.h", | 26 "switches.h", |
| 23 ] | 27 ] |
| 24 | 28 |
| 25 public_deps = [ | 29 public_deps = [ |
| 26 "//base", | 30 "//base", |
| 27 "//components/keyed_service/core", | 31 "//components/keyed_service/core", |
| 28 "//components/leveldb_proto", | 32 "//components/leveldb_proto", |
| 29 "//components/prefs", | 33 "//components/prefs", |
| 30 "//components/signin/core/browser", | 34 "//components/signin/core/browser", |
| (...skipping 29 matching lines...) Expand all Loading... |
| 60 "//base/test:test_support", | 64 "//base/test:test_support", |
| 61 "//components/image_fetcher", | 65 "//components/image_fetcher", |
| 62 "//components/leveldb_proto:test_support", | 66 "//components/leveldb_proto:test_support", |
| 63 "//components/signin/core/browser:test_support", | 67 "//components/signin/core/browser:test_support", |
| 64 "//components/sync_driver:test_support", | 68 "//components/sync_driver:test_support", |
| 65 "//net:test_support", | 69 "//net:test_support", |
| 66 "//testing/gtest", | 70 "//testing/gtest", |
| 67 "//third_party/icu/", | 71 "//third_party/icu/", |
| 68 ] | 72 ] |
| 69 } | 73 } |
| OLD | NEW |