Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(130)

Side by Side Diff: components/history.gypi

Issue 870063002: Componentize TopSites, TopSitesBackend, TopSitesDatabase (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@815983002
Patch Set: Fix typo Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « components/components_tests.gyp ('k') | components/history/DEPS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 { 5 {
6 'targets': [ 6 'targets': [
7 { 7 {
8 # GN version: //components/history/core/browser 8 # GN version: //components/history/core/browser
9 'target_name': 'history_core_browser', 9 'target_name': 'history_core_browser',
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 '../net/net.gyp:net', 16 '../net/net.gyp:net',
17 '../skia/skia.gyp:skia',
17 '../sql/sql.gyp:sql', 18 '../sql/sql.gyp:sql',
18 '../third_party/sqlite/sqlite.gyp:sqlite', 19 '../third_party/sqlite/sqlite.gyp:sqlite',
19 '../ui/base/ui_base.gyp:ui_base', 20 '../ui/base/ui_base.gyp:ui_base',
20 '../ui/gfx/gfx.gyp:gfx', 21 '../ui/gfx/gfx.gyp:gfx',
21 '../url/url.gyp:url_lib', 22 '../url/url.gyp:url_lib',
22 'favicon_base', 23 'favicon_base',
23 'history_core_browser_proto', 24 'history_core_browser_proto',
24 'keyed_service_core', 25 'keyed_service_core',
25 'query_parser', 26 'query_parser',
26 ], 27 ],
(...skipping 29 matching lines...) Expand all
56 'history/core/browser/in_memory_database.h', 57 'history/core/browser/in_memory_database.h',
57 'history/core/browser/in_memory_url_index_types.cc', 58 'history/core/browser/in_memory_url_index_types.cc',
58 'history/core/browser/in_memory_url_index_types.h', 59 'history/core/browser/in_memory_url_index_types.h',
59 'history/core/browser/keyword_id.h', 60 'history/core/browser/keyword_id.h',
60 'history/core/browser/keyword_search_term.cc', 61 'history/core/browser/keyword_search_term.cc',
61 'history/core/browser/keyword_search_term.h', 62 'history/core/browser/keyword_search_term.h',
62 'history/core/browser/page_usage_data.cc', 63 'history/core/browser/page_usage_data.cc',
63 'history/core/browser/page_usage_data.h', 64 'history/core/browser/page_usage_data.h',
64 'history/core/browser/thumbnail_database.cc', 65 'history/core/browser/thumbnail_database.cc',
65 'history/core/browser/thumbnail_database.h', 66 'history/core/browser/thumbnail_database.h',
67 'history/core/browser/top_sites.cc',
68 'history/core/browser/top_sites.h',
69 'history/core/browser/top_sites_backend.cc',
70 'history/core/browser/top_sites_backend.h',
66 'history/core/browser/top_sites_cache.cc', 71 'history/core/browser/top_sites_cache.cc',
67 'history/core/browser/top_sites_cache.h', 72 'history/core/browser/top_sites_cache.h',
73 'history/core/browser/top_sites_database.cc',
74 'history/core/browser/top_sites_database.h',
68 'history/core/browser/top_sites_observer.h', 75 'history/core/browser/top_sites_observer.h',
69 'history/core/browser/url_database.cc', 76 'history/core/browser/url_database.cc',
70 'history/core/browser/url_database.h', 77 'history/core/browser/url_database.h',
71 'history/core/browser/url_row.cc', 78 'history/core/browser/url_row.cc',
72 'history/core/browser/url_row.h', 79 'history/core/browser/url_row.h',
73 'history/core/browser/url_utils.cc', 80 'history/core/browser/url_utils.cc',
74 'history/core/browser/url_utils.h', 81 'history/core/browser/url_utils.h',
75 'history/core/browser/visit_database.cc', 82 'history/core/browser/visit_database.cc',
76 'history/core/browser/visit_database.h', 83 'history/core/browser/visit_database.h',
77 'history/core/browser/visit_filter.cc', 84 'history/core/browser/visit_filter.cc',
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
145 ], 152 ],
146 'dependencies': [ 153 'dependencies': [
147 '../base/base.gyp:base', 154 '../base/base.gyp:base',
148 '../sql/sql.gyp:sql', 155 '../sql/sql.gyp:sql',
149 '../testing/gtest.gyp:gtest', 156 '../testing/gtest.gyp:gtest',
150 '../url/url.gyp:url_lib', 157 '../url/url.gyp:url_lib',
151 'history_core_browser', 158 'history_core_browser',
152 ], 159 ],
153 'sources': [ 160 'sources': [
154 # Note: sources list duplicated in GN build. 161 # Note: sources list duplicated in GN build.
162 'history/core/test/database_test_utils.cc',
163 'history/core/test/database_test_utils.h',
155 'history/core/test/history_client_fake_bookmarks.cc', 164 'history/core/test/history_client_fake_bookmarks.cc',
156 'history/core/test/history_client_fake_bookmarks.h', 165 'history/core/test/history_client_fake_bookmarks.h',
157 'history/core/test/history_unittest_base.cc', 166 'history/core/test/history_unittest_base.cc',
158 'history/core/test/history_unittest_base.h', 167 'history/core/test/history_unittest_base.h',
159 'history/core/test/test_history_database.cc', 168 'history/core/test/test_history_database.cc',
160 'history/core/test/test_history_database.h', 169 'history/core/test/test_history_database.h',
161 ], 170 ],
162 }, 171 },
163 ], 172 ],
164 'conditions': [ 173 'conditions': [
(...skipping 17 matching lines...) Expand all
182 'history/content/browser/history_context_helper.cc', 191 'history/content/browser/history_context_helper.cc',
183 'history/content/browser/history_context_helper.h', 192 'history/content/browser/history_context_helper.h',
184 'history/content/browser/history_database_helper.cc', 193 'history/content/browser/history_database_helper.cc',
185 'history/content/browser/history_database_helper.h', 194 'history/content/browser/history_database_helper.h',
186 ], 195 ],
187 } 196 }
188 ], 197 ],
189 }], 198 }],
190 ], 199 ],
191 } 200 }
OLDNEW
« no previous file with comments | « components/components_tests.gyp ('k') | components/history/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698