| OLD | NEW |
| (Empty) |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | |
| 2 # Use of this source code is governed by a BSD-style license that can be | |
| 3 # found in the LICENSE file. | |
| 4 | |
| 5 { | |
| 6 'targets': [ | |
| 7 { | |
| 8 # GN version: //components/ntp_snippets | |
| 9 'target_name': 'ntp_snippets', | |
| 10 'type': 'static_library', | |
| 11 'include_dirs': [ | |
| 12 '..', | |
| 13 ], | |
| 14 'dependencies': [ | |
| 15 '../base/base.gyp:base', | |
| 16 '../components/components_strings.gyp:components_strings', | |
| 17 '../google_apis/google_apis.gyp:google_apis', | |
| 18 '../net/net.gyp:net', | |
| 19 '../url/url.gyp:url_lib', | |
| 20 '../third_party/icu/icu.gyp:icuuc', | |
| 21 'bookmarks_browser', | |
| 22 'data_use_measurement_core', | |
| 23 'image_fetcher', | |
| 24 'keyed_service_core', | |
| 25 'leveldb_proto', | |
| 26 'offline_pages', | |
| 27 'prefs/prefs.gyp:prefs', | |
| 28 'signin_core_browser', | |
| 29 'suggestions', | |
| 30 'sync.gyp:sync', | |
| 31 'variations', | |
| 32 'variations_net', | |
| 33 ], | |
| 34 'sources': [ | |
| 35 'ntp_snippets/bookmarks/bookmark_last_visit_utils.cc', | |
| 36 'ntp_snippets/bookmarks/bookmark_last_visit_utils.h', | |
| 37 'ntp_snippets/bookmarks/bookmark_suggestions_provider.cc', | |
| 38 'ntp_snippets/bookmarks/bookmark_suggestions_provider.h', | |
| 39 'ntp_snippets/category_factory.cc', | |
| 40 'ntp_snippets/category_factory.h', | |
| 41 'ntp_snippets/category_info.cc', | |
| 42 'ntp_snippets/category_info.h', | |
| 43 'ntp_snippets/category_status.cc', | |
| 44 'ntp_snippets/category_status.h', | |
| 45 'ntp_snippets/category.cc', | |
| 46 'ntp_snippets/category.h', | |
| 47 'ntp_snippets/content_suggestion.cc', | |
| 48 'ntp_snippets/content_suggestion.h', | |
| 49 'ntp_snippets/content_suggestions_provider.cc', | |
| 50 'ntp_snippets/content_suggestions_provider.h', | |
| 51 'ntp_snippets/content_suggestions_service.cc', | |
| 52 'ntp_snippets/content_suggestions_service.h', | |
| 53 'ntp_snippets/ntp_snippet.cc', | |
| 54 'ntp_snippets/ntp_snippet.h', | |
| 55 'ntp_snippets/ntp_snippets_constants.cc', | |
| 56 'ntp_snippets/ntp_snippets_constants.h', | |
| 57 'ntp_snippets/ntp_snippets_database.cc', | |
| 58 'ntp_snippets/ntp_snippets_database.h', | |
| 59 'ntp_snippets/ntp_snippets_fetcher.cc', | |
| 60 'ntp_snippets/ntp_snippets_fetcher.h', | |
| 61 'ntp_snippets/ntp_snippets_scheduler.h', | |
| 62 'ntp_snippets/ntp_snippets_service.cc', | |
| 63 'ntp_snippets/ntp_snippets_service.h', | |
| 64 'ntp_snippets/ntp_snippets_status_service.cc', | |
| 65 'ntp_snippets/ntp_snippets_status_service.h', | |
| 66 'ntp_snippets/offline_pages/offline_page_suggestions_provider.cc', | |
| 67 'ntp_snippets/offline_pages/offline_page_suggestions_provider.h', | |
| 68 'ntp_snippets/physical_web_pages/physical_web_page_suggestions_provider.
cc', | |
| 69 'ntp_snippets/physical_web_pages/physical_web_page_suggestions_provider.
h', | |
| 70 'ntp_snippets/pref_names.cc', | |
| 71 'ntp_snippets/pref_names.h', | |
| 72 'ntp_snippets/proto/ntp_snippets.proto', | |
| 73 'ntp_snippets/request_throttler.cc', | |
| 74 'ntp_snippets/request_throttler.h', | |
| 75 'ntp_snippets/switches.cc', | |
| 76 'ntp_snippets/switches.h', | |
| 77 ], | |
| 78 'variables': { | |
| 79 'proto_in_dir': 'ntp_snippets/proto', | |
| 80 'proto_out_dir': 'components/ntp_snippets/proto', | |
| 81 }, | |
| 82 'includes': [ '../build/protoc.gypi' ], | |
| 83 }, | |
| 84 ], | |
| 85 } | |
| OLD | NEW |