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

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

Issue 2723953002: [sync] skeleton implementation of TypedURLSyncBridge (Closed)
Patch Set: 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
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 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
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", 69 "typed_url_sync_metadata_database.cc",
70 "typed_url_sync_metadata_database.h", 70 "typed_url_sync_metadata_database.h",
71 "typed_url_sync_bridge.cc",
72 "typed_url_sync_bridge.h",
71 "typed_url_syncable_service.cc", 73 "typed_url_syncable_service.cc",
72 "typed_url_syncable_service.h", 74 "typed_url_syncable_service.h",
73 "url_database.cc", 75 "url_database.cc",
74 "url_database.h", 76 "url_database.h",
75 "url_row.cc", 77 "url_row.cc",
76 "url_row.h", 78 "url_row.h",
77 "url_utils.cc", 79 "url_utils.cc",
78 "url_utils.h", 80 "url_utils.h",
79 "visit_database.cc", 81 "visit_database.cc",
80 "visit_database.h", 82 "visit_database.h",
(...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after
222 "//sql:test_support", 224 "//sql:test_support",
223 "//testing/gtest", 225 "//testing/gtest",
224 "//ui/gfx", 226 "//ui/gfx",
225 "//ui/gfx:test_support", 227 "//ui/gfx:test_support",
226 "//url", 228 "//url",
227 ] 229 ]
228 if (is_android) { 230 if (is_android) {
229 sources += [ "android/android_history_types_unittest.cc" ] 231 sources += [ "android/android_history_types_unittest.cc" ]
230 } 232 }
231 } 233 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698