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

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

Issue 2757193003: [Sync] Do not deadlock when joining sync thread with a pending HistoryModelWorker task. (Closed)
Patch Set: self-review 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 169 matching lines...) Expand 10 before | Expand all | Expand 10 after
180 } 180 }
181 181
182 source_set("unit_tests") { 182 source_set("unit_tests") {
183 testonly = true 183 testonly = true
184 sources = [ 184 sources = [
185 "download_slice_info_unittest.cc", 185 "download_slice_info_unittest.cc",
186 "expire_history_backend_unittest.cc", 186 "expire_history_backend_unittest.cc",
187 "history_backend_db_unittest.cc", 187 "history_backend_db_unittest.cc",
188 "history_backend_unittest.cc", 188 "history_backend_unittest.cc",
189 "history_database_unittest.cc", 189 "history_database_unittest.cc",
190 "history_model_worker_unittest.cc",
190 "history_querying_unittest.cc", 191 "history_querying_unittest.cc",
191 "history_service_unittest.cc", 192 "history_service_unittest.cc",
192 "history_types_unittest.cc", 193 "history_types_unittest.cc",
193 "thumbnail_database_unittest.cc", 194 "thumbnail_database_unittest.cc",
194 "top_sites_cache_unittest.cc", 195 "top_sites_cache_unittest.cc",
195 "top_sites_database_unittest.cc", 196 "top_sites_database_unittest.cc",
196 "top_sites_impl_unittest.cc", 197 "top_sites_impl_unittest.cc",
197 "typed_url_syncable_service_unittest.cc", 198 "typed_url_syncable_service_unittest.cc",
198 "url_database_unittest.cc", 199 "url_database_unittest.cc",
199 "url_utils_unittest.cc", 200 "url_utils_unittest.cc",
(...skipping 18 matching lines...) Expand all
218 "//sql:test_support", 219 "//sql:test_support",
219 "//testing/gtest", 220 "//testing/gtest",
220 "//ui/gfx", 221 "//ui/gfx",
221 "//ui/gfx:test_support", 222 "//ui/gfx:test_support",
222 "//url", 223 "//url",
223 ] 224 ]
224 if (is_android) { 225 if (is_android) {
225 sources += [ "android/android_history_types_unittest.cc" ] 226 sources += [ "android/android_history_types_unittest.cc" ]
226 } 227 }
227 } 228 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698