| 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', |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 'prefs/prefs.gyp:prefs', | 26 'prefs/prefs.gyp:prefs', |
| 27 'signin_core_browser', | 27 'signin_core_browser', |
| 28 'suggestions', | 28 'suggestions', |
| 29 'sync_driver', | 29 'sync_driver', |
| 30 'variations', | 30 'variations', |
| 31 'variations_net', | 31 'variations_net', |
| 32 ], | 32 ], |
| 33 'sources': [ | 33 'sources': [ |
| 34 'ntp_snippets/bookmarks/bookmark_last_visit_utils.cc', | 34 'ntp_snippets/bookmarks/bookmark_last_visit_utils.cc', |
| 35 'ntp_snippets/bookmarks/bookmark_last_visit_utils.h', | 35 'ntp_snippets/bookmarks/bookmark_last_visit_utils.h', |
| 36 'ntp_snippets/bookmarks/bookmark_suggestions_provider.cc', |
| 37 'ntp_snippets/bookmarks/bookmark_suggestions_provider.h', |
| 36 'ntp_snippets/category_factory.cc', | 38 'ntp_snippets/category_factory.cc', |
| 37 'ntp_snippets/category_factory.h', | 39 'ntp_snippets/category_factory.h', |
| 38 'ntp_snippets/category_status.cc', | 40 'ntp_snippets/category_status.cc', |
| 39 'ntp_snippets/category_status.h', | 41 'ntp_snippets/category_status.h', |
| 40 'ntp_snippets/category.cc', | 42 'ntp_snippets/category.cc', |
| 41 'ntp_snippets/category.h', | 43 'ntp_snippets/category.h', |
| 42 'ntp_snippets/content_suggestion.cc', | 44 'ntp_snippets/content_suggestion.cc', |
| 43 'ntp_snippets/content_suggestion.h', | 45 'ntp_snippets/content_suggestion.h', |
| 44 'ntp_snippets/content_suggestions_provider.cc', | 46 'ntp_snippets/content_suggestions_provider.cc', |
| 45 'ntp_snippets/content_suggestions_provider.h', | 47 'ntp_snippets/content_suggestions_provider.h', |
| (...skipping 23 matching lines...) Expand all Loading... |
| 69 'ntp_snippets/switches.h', | 71 'ntp_snippets/switches.h', |
| 70 ], | 72 ], |
| 71 'variables': { | 73 'variables': { |
| 72 'proto_in_dir': 'ntp_snippets/proto', | 74 'proto_in_dir': 'ntp_snippets/proto', |
| 73 'proto_out_dir': 'components/ntp_snippets/proto', | 75 'proto_out_dir': 'components/ntp_snippets/proto', |
| 74 }, | 76 }, |
| 75 'includes': [ '../build/protoc.gypi' ], | 77 'includes': [ '../build/protoc.gypi' ], |
| 76 }, | 78 }, |
| 77 ], | 79 ], |
| 78 } | 80 } |
| OLD | NEW |