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

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

Issue 2846723005: Use ScopedTaskEnvironment instead of MessageLoopForUI in components tests. (Closed)
Patch Set: fix-test-errors Created 3 years, 7 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("test") { 5 static_library("test") {
6 testonly = true 6 testonly = true
7 sources = [ 7 sources = [
8 "database_test_utils.cc", 8 "database_test_utils.cc",
9 "database_test_utils.h", 9 "database_test_utils.h",
10 "fake_web_history_service.cc", 10 "fake_web_history_service.cc",
(...skipping 11 matching lines...) Expand all
22 "thumbnail-inl.h", 22 "thumbnail-inl.h",
23 "thumbnail.cc", 23 "thumbnail.cc",
24 "thumbnail.h", 24 "thumbnail.h",
25 "thumbnail_ios.mm", 25 "thumbnail_ios.mm",
26 "wait_top_sites_loaded_observer.cc", 26 "wait_top_sites_loaded_observer.cc",
27 "wait_top_sites_loaded_observer.h", 27 "wait_top_sites_loaded_observer.h",
28 ] 28 ]
29 29
30 deps = [ 30 deps = [
31 "//base", 31 "//base",
32 "//base/test:test_support",
32 "//components/history/core/browser", 33 "//components/history/core/browser",
33 "//components/sync/protocol:protocol", 34 "//components/sync/protocol:protocol",
34 "//net", 35 "//net",
35 "//sql", 36 "//sql",
36 "//sql:test_support", 37 "//sql:test_support",
37 "//testing/gtest", 38 "//testing/gtest",
38 "//ui/gfx", 39 "//ui/gfx",
39 "//url", 40 "//url",
40 ] 41 ]
41 42
42 if (is_ios) { 43 if (is_ios) {
43 sources -= [ "thumbnail.cc" ] 44 sources -= [ "thumbnail.cc" ]
44 } 45 }
45 } 46 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698