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

Side by Side Diff: components/history.gypi

Issue 963823003: Move InMemoryURLIndex into chrome/browser/autocomplete (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@shortcut-database
Patch Set: Fixing win_chromium_x64_rel_ng build Created 5 years, 9 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/core/browser/BUILD.gn » ('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 '../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 '../skia/skia.gyp:skia', 18 '../skia/skia.gyp:skia',
19 '../sql/sql.gyp:sql', 19 '../sql/sql.gyp:sql',
20 '../third_party/sqlite/sqlite.gyp:sqlite', 20 '../third_party/sqlite/sqlite.gyp:sqlite',
21 '../ui/base/ui_base.gyp:ui_base', 21 '../ui/base/ui_base.gyp:ui_base',
22 '../ui/gfx/gfx.gyp:gfx', 22 '../ui/gfx/gfx.gyp:gfx',
23 '../url/url.gyp:url_lib', 23 '../url/url.gyp:url_lib',
24 'favicon_base', 24 'favicon_base',
25 'history_core_browser_proto',
26 'keyed_service_core', 25 'keyed_service_core',
27 'query_parser', 26 'query_parser',
28 'signin_core_browser', 27 'signin_core_browser',
29 ], 28 ],
30 'sources': [ 29 'sources': [
31 # Note: sources list duplicated in GN build. 30 # Note: sources list duplicated in GN build.
32 'history/core/browser/download_constants.h', 31 'history/core/browser/download_constants.h',
33 'history/core/browser/download_database.cc', 32 'history/core/browser/download_database.cc',
34 'history/core/browser/download_database.h', 33 'history/core/browser/download_database.h',
35 'history/core/browser/download_row.cc', 34 'history/core/browser/download_row.cc',
(...skipping 14 matching lines...) Expand all
50 'history/core/browser/history_database_params.cc', 49 'history/core/browser/history_database_params.cc',
51 'history/core/browser/history_database_params.h', 50 'history/core/browser/history_database_params.h',
52 'history/core/browser/history_db_task.h', 51 'history/core/browser/history_db_task.h',
53 'history/core/browser/history_match.cc', 52 'history/core/browser/history_match.cc',
54 'history/core/browser/history_match.h', 53 'history/core/browser/history_match.h',
55 'history/core/browser/history_service_observer.h', 54 'history/core/browser/history_service_observer.h',
56 'history/core/browser/history_types.cc', 55 'history/core/browser/history_types.cc',
57 'history/core/browser/history_types.h', 56 'history/core/browser/history_types.h',
58 'history/core/browser/in_memory_database.cc', 57 'history/core/browser/in_memory_database.cc',
59 'history/core/browser/in_memory_database.h', 58 'history/core/browser/in_memory_database.h',
60 'history/core/browser/in_memory_url_index_types.cc',
61 'history/core/browser/in_memory_url_index_types.h',
62 'history/core/browser/keyword_id.h', 59 'history/core/browser/keyword_id.h',
63 'history/core/browser/keyword_search_term.cc', 60 'history/core/browser/keyword_search_term.cc',
64 'history/core/browser/keyword_search_term.h', 61 'history/core/browser/keyword_search_term.h',
65 'history/core/browser/page_usage_data.cc', 62 'history/core/browser/page_usage_data.cc',
66 'history/core/browser/page_usage_data.h', 63 'history/core/browser/page_usage_data.h',
67 'history/core/browser/scored_history_match.cc',
68 'history/core/browser/scored_history_match.h',
69 'history/core/browser/thumbnail_database.cc', 64 'history/core/browser/thumbnail_database.cc',
70 'history/core/browser/thumbnail_database.h', 65 'history/core/browser/thumbnail_database.h',
71 'history/core/browser/top_sites.cc', 66 'history/core/browser/top_sites.cc',
72 'history/core/browser/top_sites.h', 67 'history/core/browser/top_sites.h',
73 'history/core/browser/top_sites_backend.cc', 68 'history/core/browser/top_sites_backend.cc',
74 'history/core/browser/top_sites_backend.h', 69 'history/core/browser/top_sites_backend.h',
75 'history/core/browser/top_sites_cache.cc', 70 'history/core/browser/top_sites_cache.cc',
76 'history/core/browser/top_sites_cache.h', 71 'history/core/browser/top_sites_cache.h',
77 'history/core/browser/top_sites_database.cc', 72 'history/core/browser/top_sites_database.cc',
78 'history/core/browser/top_sites_database.h', 73 'history/core/browser/top_sites_database.h',
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
114 'history/core/browser/android/sql_handler.h', 109 'history/core/browser/android/sql_handler.h',
115 'history/core/browser/android/urls_sql_handler.cc', 110 'history/core/browser/android/urls_sql_handler.cc',
116 'history/core/browser/android/urls_sql_handler.h', 111 'history/core/browser/android/urls_sql_handler.h',
117 'history/core/browser/android/visit_sql_handler.cc', 112 'history/core/browser/android/visit_sql_handler.cc',
118 'history/core/browser/android/visit_sql_handler.h', 113 'history/core/browser/android/visit_sql_handler.h',
119 ], 114 ],
120 }], 115 }],
121 ], 116 ],
122 }, 117 },
123 { 118 {
124 # GN version: //components/history/core/browser:proto
125 # Protobuf compiler / generator for the InMemoryURLIndex caching
126 # protocol buffer.
127 'target_name': 'history_core_browser_proto',
128 'type': 'static_library',
129 'sources': [
130 'history/core/browser/in_memory_url_index_cache.proto',
131 ],
132 'variables': {
133 'proto_in_dir': 'history/core/browser',
134 'proto_out_dir': 'components/history/core/browser',
135 },
136 'includes': [ '../build/protoc.gypi' ]
137 },
138 {
139 # GN version: //components/history/core/common 119 # GN version: //components/history/core/common
140 'target_name': 'history_core_common', 120 'target_name': 'history_core_common',
141 'type': 'static_library', 121 'type': 'static_library',
142 'include_dirs': [ 122 'include_dirs': [
143 '..', 123 '..',
144 ], 124 ],
145 'dependencies': [ 125 'dependencies': [
146 '../base/base.gyp:base', 126 '../base/base.gyp:base',
147 ], 127 ],
148 'sources': [ 128 'sources': [
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
199 'history/content/browser/history_context_helper.cc', 179 'history/content/browser/history_context_helper.cc',
200 'history/content/browser/history_context_helper.h', 180 'history/content/browser/history_context_helper.h',
201 'history/content/browser/history_database_helper.cc', 181 'history/content/browser/history_database_helper.cc',
202 'history/content/browser/history_database_helper.h', 182 'history/content/browser/history_database_helper.h',
203 ], 183 ],
204 } 184 }
205 ], 185 ],
206 }], 186 }],
207 ], 187 ],
208 } 188 }
OLDNEW
« no previous file with comments | « components/components_tests.gyp ('k') | components/history/core/browser/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698