| 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", | 10 "fake_web_history_service.cc", |
| (...skipping 12 matching lines...) Expand all Loading... |
| 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 "//components/history/core/browser", | 32 "//components/history/core/browser", |
| 33 "//components/sync/protocol:protocol", |
| 33 "//net", | 34 "//net", |
| 34 "//sql", | 35 "//sql", |
| 35 "//sql:test_support", | 36 "//sql:test_support", |
| 36 "//sync/protocol:protocol", | |
| 37 "//testing/gtest", | 37 "//testing/gtest", |
| 38 "//ui/gfx", | 38 "//ui/gfx", |
| 39 "//url", | 39 "//url", |
| 40 ] | 40 ] |
| 41 | 41 |
| 42 if (is_ios) { | 42 if (is_ios) { |
| 43 sources -= [ "thumbnail.cc" ] | 43 sources -= [ "thumbnail.cc" ] |
| 44 } | 44 } |
| 45 } | 45 } |
| OLD | NEW |