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", | |
engedy
2015/11/30 15:47:08
This looks wrong. Shouldn't this file be physical
msramek
2015/12/01 12:27:12
I actually commented on this, but accidentally put
| |
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", |
(...skipping 12 matching lines...) Expand all Loading... | |
30 "//sql:test_support", | 31 "//sql:test_support", |
31 "//testing/gtest", | 32 "//testing/gtest", |
32 "//ui/gfx", | 33 "//ui/gfx", |
33 "//url", | 34 "//url", |
34 ] | 35 ] |
35 | 36 |
36 if (is_ios) { | 37 if (is_ios) { |
37 sources -= [ "thumbnail.cc" ] | 38 sources -= [ "thumbnail.cc" ] |
38 } | 39 } |
39 } | 40 } |
OLD | NEW |