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_types.cc", |
| 10 "history_types.h", |
9 "history_match.cc", | 11 "history_match.cc", |
10 "history_match.h", | 12 "history_match.h", |
11 "in_memory_database.cc", | 13 "in_memory_database.cc", |
12 "in_memory_database.h", | 14 "in_memory_database.h", |
13 "keyword_id.h", | 15 "keyword_id.h", |
14 "keyword_search_term.cc", | 16 "keyword_search_term.cc", |
15 "keyword_search_term.h", | 17 "keyword_search_term.h", |
| 18 "page_usage_data.cc", |
| 19 "page_usage_data.h", |
16 "url_database.cc", | 20 "url_database.cc", |
17 "url_database.h", | 21 "url_database.h", |
18 "url_row.cc", | 22 "url_row.cc", |
19 "url_row.h", | 23 "url_row.h", |
20 ] | 24 ] |
21 | 25 |
22 deps = [ | 26 deps = [ |
23 "//base", | 27 "//base", |
| 28 "//components/favicon_base", |
24 "//components/keyed_service/core", | 29 "//components/keyed_service/core", |
25 "//components/query_parser", | 30 "//components/query_parser", |
26 "//net", | 31 "//net", |
27 "//sql", | 32 "//sql", |
| 33 "//ui/gfx", |
28 ] | 34 ] |
29 } | 35 } |
OLD | NEW |