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

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

Issue 2782573002: [Sync] Refactor ModelSafeWorker::DoWorkAndWaitUntilDone() to avoid code duplication. (Closed)
Patch Set: fix-test-error Created 3 years, 8 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 172 matching lines...) Expand 10 before | Expand all | Expand 10 after
183 } 183 }
184 184
185 source_set("unit_tests") { 185 source_set("unit_tests") {
186 testonly = true 186 testonly = true
187 sources = [ 187 sources = [
188 "download_slice_info_unittest.cc", 188 "download_slice_info_unittest.cc",
189 "expire_history_backend_unittest.cc", 189 "expire_history_backend_unittest.cc",
190 "history_backend_db_unittest.cc", 190 "history_backend_db_unittest.cc",
191 "history_backend_unittest.cc", 191 "history_backend_unittest.cc",
192 "history_database_unittest.cc", 192 "history_database_unittest.cc",
193 "history_model_worker_unittest.cc",
193 "history_querying_unittest.cc", 194 "history_querying_unittest.cc",
194 "history_service_unittest.cc", 195 "history_service_unittest.cc",
195 "history_types_unittest.cc", 196 "history_types_unittest.cc",
196 "thumbnail_database_unittest.cc", 197 "thumbnail_database_unittest.cc",
197 "top_sites_cache_unittest.cc", 198 "top_sites_cache_unittest.cc",
198 "top_sites_database_unittest.cc", 199 "top_sites_database_unittest.cc",
199 "top_sites_impl_unittest.cc", 200 "top_sites_impl_unittest.cc",
200 "typed_url_sync_metadata_database_unittest.cc", 201 "typed_url_sync_metadata_database_unittest.cc",
201 "typed_url_syncable_service_unittest.cc", 202 "typed_url_syncable_service_unittest.cc",
202 "url_database_unittest.cc", 203 "url_database_unittest.cc",
(...skipping 19 matching lines...) Expand all
222 "//sql:test_support", 223 "//sql:test_support",
223 "//testing/gtest", 224 "//testing/gtest",
224 "//ui/gfx", 225 "//ui/gfx",
225 "//ui/gfx:test_support", 226 "//ui/gfx:test_support",
226 "//url", 227 "//url",
227 ] 228 ]
228 if (is_android) { 229 if (is_android) {
229 sources += [ "android/android_history_types_unittest.cc" ] 230 sources += [ "android/android_history_types_unittest.cc" ]
230 } 231 }
231 } 232 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698