OLD | NEW |
1 # Copyright 2015 The Chromium Authors. All rights reserved. | 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 | 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 { | 5 { |
6 'targets': [ | 6 'targets': [ |
7 { | 7 { |
8 # GN version: //components/ntp_snippets | 8 # GN version: //components/ntp_snippets |
9 'target_name': 'ntp_snippets', | 9 'target_name': 'ntp_snippets', |
10 'type': 'static_library', | 10 'type': 'static_library', |
11 'include_dirs': [ | 11 'include_dirs': [ |
12 '..', | 12 '..', |
13 ], | 13 ], |
14 'dependencies': [ | 14 'dependencies': [ |
15 '../base/base.gyp:base', | 15 '../base/base.gyp:base', |
16 '../google_apis/google_apis.gyp:google_apis', | 16 '../google_apis/google_apis.gyp:google_apis', |
17 '../net/net.gyp:net', | 17 '../net/net.gyp:net', |
18 '../url/url.gyp:url_lib', | 18 '../url/url.gyp:url_lib', |
19 '../third_party/icu/icu.gyp:icuuc', | 19 '../third_party/icu/icu.gyp:icuuc', |
20 'data_use_measurement_core', | 20 'data_use_measurement_core', |
21 'image_fetcher', | 21 'image_fetcher', |
22 'keyed_service_core', | 22 'keyed_service_core', |
23 'leveldb_proto', | 23 'leveldb_proto', |
| 24 'offline_pages', |
24 'prefs/prefs.gyp:prefs', | 25 'prefs/prefs.gyp:prefs', |
25 'signin_core_browser', | 26 'signin_core_browser', |
26 'suggestions', | 27 'suggestions', |
27 'sync_driver', | 28 'sync_driver', |
28 'variations', | 29 'variations', |
29 ], | 30 ], |
30 'sources': [ | 31 'sources': [ |
31 'ntp_snippets/content_suggestion.cc', | 32 'ntp_snippets/content_suggestion.cc', |
32 'ntp_snippets/content_suggestion.h', | 33 'ntp_snippets/content_suggestion.h', |
33 'ntp_snippets/content_suggestions_category_status.cc', | 34 'ntp_snippets/content_suggestions_category_status.cc', |
34 'ntp_snippets/content_suggestions_category_status.h', | 35 'ntp_snippets/content_suggestions_category_status.h', |
35 'ntp_snippets/content_suggestions_category.h', | 36 'ntp_snippets/content_suggestions_category.h', |
36 'ntp_snippets/content_suggestions_provider.cc', | 37 'ntp_snippets/content_suggestions_provider.cc', |
37 'ntp_snippets/content_suggestions_provider.h', | 38 'ntp_snippets/content_suggestions_provider.h', |
38 'ntp_snippets/content_suggestions_service.cc', | 39 'ntp_snippets/content_suggestions_service.cc', |
39 'ntp_snippets/content_suggestions_service.h', | 40 'ntp_snippets/content_suggestions_service.h', |
40 'ntp_snippets/ntp_snippet.cc', | 41 'ntp_snippets/ntp_snippet.cc', |
41 'ntp_snippets/ntp_snippet.h', | 42 'ntp_snippets/ntp_snippet.h', |
42 'ntp_snippets/ntp_snippets_constants.cc', | 43 'ntp_snippets/ntp_snippets_constants.cc', |
43 'ntp_snippets/ntp_snippets_constants.h', | 44 'ntp_snippets/ntp_snippets_constants.h', |
44 'ntp_snippets/ntp_snippets_database.cc', | 45 'ntp_snippets/ntp_snippets_database.cc', |
45 'ntp_snippets/ntp_snippets_database.h', | 46 'ntp_snippets/ntp_snippets_database.h', |
46 'ntp_snippets/ntp_snippets_fetcher.cc', | 47 'ntp_snippets/ntp_snippets_fetcher.cc', |
47 'ntp_snippets/ntp_snippets_fetcher.h', | 48 'ntp_snippets/ntp_snippets_fetcher.h', |
48 'ntp_snippets/ntp_snippets_scheduler.h', | 49 'ntp_snippets/ntp_snippets_scheduler.h', |
49 'ntp_snippets/ntp_snippets_service.cc', | 50 'ntp_snippets/ntp_snippets_service.cc', |
50 'ntp_snippets/ntp_snippets_service.h', | 51 'ntp_snippets/ntp_snippets_service.h', |
51 'ntp_snippets/ntp_snippets_status_service.cc', | 52 'ntp_snippets/ntp_snippets_status_service.cc', |
52 'ntp_snippets/ntp_snippets_status_service.h', | 53 'ntp_snippets/ntp_snippets_status_service.h', |
| 54 'ntp_snippets/offline_pages/offline_page_suggestions_provider.cc', |
| 55 'ntp_snippets/offline_pages/offline_page_suggestions_provider.h', |
53 'ntp_snippets/pref_names.cc', | 56 'ntp_snippets/pref_names.cc', |
54 'ntp_snippets/pref_names.h', | 57 'ntp_snippets/pref_names.h', |
55 'ntp_snippets/proto/ntp_snippets.proto', | 58 'ntp_snippets/proto/ntp_snippets.proto', |
56 'ntp_snippets/switches.cc', | 59 'ntp_snippets/switches.cc', |
57 'ntp_snippets/switches.h', | 60 'ntp_snippets/switches.h', |
58 ], | 61 ], |
59 'variables': { | 62 'variables': { |
60 'proto_in_dir': 'ntp_snippets/proto', | 63 'proto_in_dir': 'ntp_snippets/proto', |
61 'proto_out_dir': 'components/ntp_snippets/proto', | 64 'proto_out_dir': 'components/ntp_snippets/proto', |
62 }, | 65 }, |
63 'includes': [ '../build/protoc.gypi' ], | 66 'includes': [ '../build/protoc.gypi' ], |
64 }, | 67 }, |
65 ], | 68 ], |
66 } | 69 } |
OLD | NEW |