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