OLD | NEW |
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", |
| 11 "fake_web_history_service.h", |
10 "history_backend_db_base_test.cc", | 12 "history_backend_db_base_test.cc", |
11 "history_backend_db_base_test.h", | 13 "history_backend_db_base_test.h", |
12 "history_client_fake_bookmarks.cc", | 14 "history_client_fake_bookmarks.cc", |
13 "history_client_fake_bookmarks.h", | 15 "history_client_fake_bookmarks.h", |
14 "history_unittest_base.cc", | 16 "history_unittest_base.cc", |
15 "history_unittest_base.h", | 17 "history_unittest_base.h", |
16 "test_history_database.cc", | 18 "test_history_database.cc", |
17 "test_history_database.h", | 19 "test_history_database.h", |
18 "thumbnail-inl.h", | 20 "thumbnail-inl.h", |
19 "thumbnail.cc", | 21 "thumbnail.cc", |
20 "thumbnail.h", | 22 "thumbnail.h", |
21 "thumbnail_ios.mm", | 23 "thumbnail_ios.mm", |
22 "wait_top_sites_loaded_observer.cc", | 24 "wait_top_sites_loaded_observer.cc", |
23 "wait_top_sites_loaded_observer.h", | 25 "wait_top_sites_loaded_observer.h", |
24 ] | 26 ] |
25 | 27 |
26 deps = [ | 28 deps = [ |
27 "//base", | 29 "//base", |
28 "//components/history/core/browser", | 30 "//components/history/core/browser", |
| 31 "//net", |
29 "//sql", | 32 "//sql", |
30 "//sql:test_support", | 33 "//sql:test_support", |
31 "//testing/gtest", | 34 "//testing/gtest", |
32 "//ui/gfx", | 35 "//ui/gfx", |
33 "//url", | 36 "//url", |
34 ] | 37 ] |
35 | 38 |
36 if (is_ios) { | 39 if (is_ios) { |
37 sources -= [ "thumbnail.cc" ] | 40 sources -= [ "thumbnail.cc" ] |
38 } | 41 } |
39 } | 42 } |
OLD | NEW |