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 "delete_directive_handler.cc", | 7 "delete_directive_handler.cc", |
8 "delete_directive_handler.h", | 8 "delete_directive_handler.h", |
9 "download_constants.h", | 9 "download_constants.h", |
10 "download_database.cc", | 10 "download_database.cc", |
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
48 "thumbnail_database.cc", | 48 "thumbnail_database.cc", |
49 "thumbnail_database.h", | 49 "thumbnail_database.h", |
50 "top_sites.cc", | 50 "top_sites.cc", |
51 "top_sites.h", | 51 "top_sites.h", |
52 "top_sites_backend.cc", | 52 "top_sites_backend.cc", |
53 "top_sites_backend.h", | 53 "top_sites_backend.h", |
54 "top_sites_cache.cc", | 54 "top_sites_cache.cc", |
55 "top_sites_cache.h", | 55 "top_sites_cache.h", |
56 "top_sites_database.cc", | 56 "top_sites_database.cc", |
57 "top_sites_database.h", | 57 "top_sites_database.h", |
| 58 "top_sites_impl.cc", |
| 59 "top_sites_impl.h", |
58 "top_sites_observer.h", | 60 "top_sites_observer.h", |
59 "typed_url_syncable_service.cc", | 61 "typed_url_syncable_service.cc", |
60 "typed_url_syncable_service.h", | 62 "typed_url_syncable_service.h", |
61 "url_database.cc", | 63 "url_database.cc", |
62 "url_database.h", | 64 "url_database.h", |
63 "url_row.cc", | 65 "url_row.cc", |
64 "url_row.h", | 66 "url_row.h", |
65 "url_utils.cc", | 67 "url_utils.cc", |
66 "url_utils.h", | 68 "url_utils.h", |
67 "visit_database.cc", | 69 "visit_database.cc", |
68 "visit_database.h", | 70 "visit_database.h", |
69 "visit_delegate.cc", | 71 "visit_delegate.cc", |
70 "visit_delegate.h", | 72 "visit_delegate.h", |
71 "visit_filter.cc", | 73 "visit_filter.cc", |
72 "visit_filter.h", | 74 "visit_filter.h", |
73 "visit_tracker.cc", | 75 "visit_tracker.cc", |
74 "visit_tracker.h", | 76 "visit_tracker.h", |
75 "visitsegment_database.cc", | 77 "visitsegment_database.cc", |
76 "visitsegment_database.h", | 78 "visitsegment_database.h", |
77 "web_history_service.cc", | 79 "web_history_service.cc", |
78 "web_history_service.h", | 80 "web_history_service.h", |
79 ] | 81 ] |
80 | 82 |
81 deps = [ | 83 deps = [ |
82 "//base", | 84 "//base", |
| 85 "//base:i18n", |
| 86 "//base:prefs", |
83 "//components/favicon_base", | 87 "//components/favicon_base", |
| 88 "//components/history/core/common", |
84 "//components/keyed_service/core", | 89 "//components/keyed_service/core", |
85 "//components/query_parser", | 90 "//components/query_parser", |
86 "//components/signin/core/browser", | 91 "//components/signin/core/browser", |
87 "//google_apis", | 92 "//google_apis", |
88 "//net", | 93 "//net", |
89 "//skia", | 94 "//skia", |
90 "//sql", | 95 "//sql", |
91 "//sync", | 96 "//sync", |
92 "//third_party/sqlite", | 97 "//third_party/sqlite", |
93 "//ui/base", | 98 "//ui/base", |
(...skipping 18 matching lines...) Expand all Loading... |
112 "android/sql_handler.h", | 117 "android/sql_handler.h", |
113 "android/urls_sql_handler.cc", | 118 "android/urls_sql_handler.cc", |
114 "android/urls_sql_handler.h", | 119 "android/urls_sql_handler.h", |
115 "android/visit_sql_handler.cc", | 120 "android/visit_sql_handler.cc", |
116 "android/visit_sql_handler.h", | 121 "android/visit_sql_handler.h", |
117 ] | 122 ] |
118 } | 123 } |
119 | 124 |
120 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 125 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
121 } | 126 } |
OLD | NEW |