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

Side by Side Diff: components/history.gypi

Issue 1100763002: Inject CanAddURLToHistory into TopSitesImpl (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@prefs
Patch Set: Fix error introduced during rebase Created 5 years, 7 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
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 '../base/base.gyp:base_i18n',
17 '../base/base.gyp:base_prefs',
16 '../google_apis/google_apis.gyp:google_apis', 18 '../google_apis/google_apis.gyp:google_apis',
17 '../net/net.gyp:net', 19 '../net/net.gyp:net',
18 '../skia/skia.gyp:skia', 20 '../skia/skia.gyp:skia',
19 '../sql/sql.gyp:sql', 21 '../sql/sql.gyp:sql',
20 '../sync/sync.gyp:sync', 22 '../sync/sync.gyp:sync',
21 '../third_party/sqlite/sqlite.gyp:sqlite', 23 '../third_party/sqlite/sqlite.gyp:sqlite',
22 '../ui/base/ui_base.gyp:ui_base', 24 '../ui/base/ui_base.gyp:ui_base',
23 '../ui/gfx/gfx.gyp:gfx', 25 '../ui/gfx/gfx.gyp:gfx',
24 '../url/url.gyp:url_lib', 26 '../url/url.gyp:url_lib',
25 'favicon_base', 27 'favicon_base',
28 'history_core_common',
26 'keyed_service_core', 29 'keyed_service_core',
27 'query_parser', 30 'query_parser',
28 'signin_core_browser', 31 'signin_core_browser',
29 ], 32 ],
30 'sources': [ 33 'sources': [
31 # Note: sources list duplicated in GN build. 34 # Note: sources list duplicated in GN build.
32 'history/core/browser/delete_directive_handler.cc', 35 'history/core/browser/delete_directive_handler.cc',
33 'history/core/browser/delete_directive_handler.h', 36 'history/core/browser/delete_directive_handler.h',
34 'history/core/browser/download_constants.h', 37 'history/core/browser/download_constants.h',
35 'history/core/browser/download_database.cc', 38 'history/core/browser/download_database.cc',
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
73 'history/core/browser/thumbnail_database.cc', 76 'history/core/browser/thumbnail_database.cc',
74 'history/core/browser/thumbnail_database.h', 77 'history/core/browser/thumbnail_database.h',
75 'history/core/browser/top_sites.cc', 78 'history/core/browser/top_sites.cc',
76 'history/core/browser/top_sites.h', 79 'history/core/browser/top_sites.h',
77 'history/core/browser/top_sites_backend.cc', 80 'history/core/browser/top_sites_backend.cc',
78 'history/core/browser/top_sites_backend.h', 81 'history/core/browser/top_sites_backend.h',
79 'history/core/browser/top_sites_cache.cc', 82 'history/core/browser/top_sites_cache.cc',
80 'history/core/browser/top_sites_cache.h', 83 'history/core/browser/top_sites_cache.h',
81 'history/core/browser/top_sites_database.cc', 84 'history/core/browser/top_sites_database.cc',
82 'history/core/browser/top_sites_database.h', 85 'history/core/browser/top_sites_database.h',
86 'history/core/browser/top_sites_impl.cc',
87 'history/core/browser/top_sites_impl.h',
83 'history/core/browser/top_sites_observer.h', 88 'history/core/browser/top_sites_observer.h',
84 'history/core/browser/typed_url_syncable_service.cc', 89 'history/core/browser/typed_url_syncable_service.cc',
85 'history/core/browser/typed_url_syncable_service.h', 90 'history/core/browser/typed_url_syncable_service.h',
86 'history/core/browser/url_database.cc', 91 'history/core/browser/url_database.cc',
87 'history/core/browser/url_database.h', 92 'history/core/browser/url_database.h',
88 'history/core/browser/url_row.cc', 93 'history/core/browser/url_row.cc',
89 'history/core/browser/url_row.h', 94 'history/core/browser/url_row.h',
90 'history/core/browser/url_utils.cc', 95 'history/core/browser/url_utils.cc',
91 'history/core/browser/url_utils.h', 96 'history/core/browser/url_utils.h',
92 'history/core/browser/visit_database.cc', 97 'history/core/browser/visit_database.cc',
(...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after
209 'include_dirs': [ 214 'include_dirs': [
210 '..', 215 '..',
211 ], 216 ],
212 'dependencies': [ 217 'dependencies': [
213 '../base/base.gyp:base', 218 '../base/base.gyp:base',
214 '../ios/web/ios_web.gyp:ios_web', 219 '../ios/web/ios_web.gyp:ios_web',
215 '../url/url.gyp:url_lib', 220 '../url/url.gyp:url_lib',
216 'history_core_browser', 221 'history_core_browser',
217 ], 222 ],
218 'sources': [ 223 'sources': [
224 'history/ios/browser/history_database_helper.cc',
225 'history/ios/browser/history_database_helper.h',
219 'history/ios/browser/web_state_top_sites_observer.cc', 226 'history/ios/browser/web_state_top_sites_observer.cc',
220 'history/ios/browser/web_state_top_sites_observer.h', 227 'history/ios/browser/web_state_top_sites_observer.h',
221 ], 228 ],
222 }, 229 },
223 ], 230 ],
224 }], 231 }],
225 ], 232 ],
226 } 233 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698