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

Side by Side Diff: components/history/core/browser/BUILD.gn

Issue 2721713002: [sync] Add typed url sync metadata to the history db (Closed)
Patch Set: update for comments Created 3 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 | « no previous file | components/history/core/browser/history_database.h » ('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 static_library("browser") { 5 static_library("browser") {
6 sources = [ 6 sources = [
7 "delete_directive_handler.cc", 7 "delete_directive_handler.cc",
8 "delete_directive_handler.h", 8 "delete_directive_handler.h",
9 "download_constants.h", 9 "download_constants.h",
10 "download_database.cc", 10 "download_database.cc",
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
59 "top_sites_backend.h", 59 "top_sites_backend.h",
60 "top_sites_cache.cc", 60 "top_sites_cache.cc",
61 "top_sites_cache.h", 61 "top_sites_cache.h",
62 "top_sites_database.cc", 62 "top_sites_database.cc",
63 "top_sites_database.h", 63 "top_sites_database.h",
64 "top_sites_impl.cc", 64 "top_sites_impl.cc",
65 "top_sites_impl.h", 65 "top_sites_impl.h",
66 "top_sites_observer.h", 66 "top_sites_observer.h",
67 "typed_url_data_type_controller.cc", 67 "typed_url_data_type_controller.cc",
68 "typed_url_data_type_controller.h", 68 "typed_url_data_type_controller.h",
69 "typed_url_sync_metadata_database.cc",
70 "typed_url_sync_metadata_database.h",
69 "typed_url_syncable_service.cc", 71 "typed_url_syncable_service.cc",
70 "typed_url_syncable_service.h", 72 "typed_url_syncable_service.h",
71 "url_database.cc", 73 "url_database.cc",
72 "url_database.h", 74 "url_database.h",
73 "url_row.cc", 75 "url_row.cc",
74 "url_row.h", 76 "url_row.h",
75 "url_utils.cc", 77 "url_utils.cc",
76 "url_utils.h", 78 "url_utils.h",
77 "visit_database.cc", 79 "visit_database.cc",
78 "visit_database.h", 80 "visit_database.h",
79 "visit_delegate.cc", 81 "visit_delegate.cc",
80 "visit_delegate.h", 82 "visit_delegate.h",
81 "visit_tracker.cc", 83 "visit_tracker.cc",
82 "visit_tracker.h", 84 "visit_tracker.h",
83 "visitsegment_database.cc", 85 "visitsegment_database.cc",
84 "visitsegment_database.h", 86 "visitsegment_database.h",
85 "web_history_service.cc", 87 "web_history_service.cc",
86 "web_history_service.h", 88 "web_history_service.h",
87 "web_history_service_observer.h", 89 "web_history_service_observer.h",
88 ] 90 ]
89 91
90 public_deps = [ 92 public_deps = [
93 "//components/sync/protocol",
91 "//skia", 94 "//skia",
92 ] 95 ]
93 96
94 deps = [ 97 deps = [
95 "//base", 98 "//base",
96 "//base:i18n", 99 "//base:i18n",
97 "//components/data_use_measurement/core", 100 "//components/data_use_measurement/core",
98 "//components/favicon_base", 101 "//components/favicon_base",
99 "//components/history/core/common", 102 "//components/history/core/common",
100 "//components/keyed_service/core", 103 "//components/keyed_service/core",
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
187 "history_backend_db_unittest.cc", 190 "history_backend_db_unittest.cc",
188 "history_backend_unittest.cc", 191 "history_backend_unittest.cc",
189 "history_database_unittest.cc", 192 "history_database_unittest.cc",
190 "history_querying_unittest.cc", 193 "history_querying_unittest.cc",
191 "history_service_unittest.cc", 194 "history_service_unittest.cc",
192 "history_types_unittest.cc", 195 "history_types_unittest.cc",
193 "thumbnail_database_unittest.cc", 196 "thumbnail_database_unittest.cc",
194 "top_sites_cache_unittest.cc", 197 "top_sites_cache_unittest.cc",
195 "top_sites_database_unittest.cc", 198 "top_sites_database_unittest.cc",
196 "top_sites_impl_unittest.cc", 199 "top_sites_impl_unittest.cc",
200 "typed_url_sync_metadata_database_unittest.cc",
197 "typed_url_syncable_service_unittest.cc", 201 "typed_url_syncable_service_unittest.cc",
198 "url_database_unittest.cc", 202 "url_database_unittest.cc",
199 "url_utils_unittest.cc", 203 "url_utils_unittest.cc",
200 "visit_database_unittest.cc", 204 "visit_database_unittest.cc",
201 "visit_tracker_unittest.cc", 205 "visit_tracker_unittest.cc",
202 "web_history_service_unittest.cc", 206 "web_history_service_unittest.cc",
203 ] 207 ]
204 deps = [ 208 deps = [
205 ":browser", 209 ":browser",
206 ":unit_tests_bundle_data", 210 ":unit_tests_bundle_data",
(...skipping 11 matching lines...) Expand all
218 "//sql:test_support", 222 "//sql:test_support",
219 "//testing/gtest", 223 "//testing/gtest",
220 "//ui/gfx", 224 "//ui/gfx",
221 "//ui/gfx:test_support", 225 "//ui/gfx:test_support",
222 "//url", 226 "//url",
223 ] 227 ]
224 if (is_android) { 228 if (is_android) {
225 sources += [ "android/android_history_types_unittest.cc" ] 229 sources += [ "android/android_history_types_unittest.cc" ]
226 } 230 }
227 } 231 }
OLDNEW
« no previous file with comments | « no previous file | components/history/core/browser/history_database.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698