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("browser") { | 5 static_library("browser") { |
6 sources = [ | 6 sources = [ |
7 "history_client.cc", | 7 "history_client.cc", |
8 "history_client.h", | 8 "history_client.h", |
9 "history_match.cc", | 9 "history_match.cc", |
10 "history_match.h", | 10 "history_match.h", |
(...skipping 13 matching lines...) Expand all Loading... |
24 "url_row.h", | 24 "url_row.h", |
25 ] | 25 ] |
26 | 26 |
27 deps = [ | 27 deps = [ |
28 "//base", | 28 "//base", |
29 "//components/favicon_base", | 29 "//components/favicon_base", |
30 "//components/keyed_service/core", | 30 "//components/keyed_service/core", |
31 "//components/query_parser", | 31 "//components/query_parser", |
32 "//net", | 32 "//net", |
33 "//sql", | 33 "//sql", |
| 34 "//ui/base", |
34 "//ui/gfx", | 35 "//ui/gfx", |
35 ] | 36 ] |
36 } | 37 } |
OLD | NEW |