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 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
86 "web_history_service.h", | 86 "web_history_service.h", |
87 ] | 87 ] |
88 | 88 |
89 public_deps = [ | 89 public_deps = [ |
90 "//skia", | 90 "//skia", |
91 ] | 91 ] |
92 | 92 |
93 deps = [ | 93 deps = [ |
94 "//base", | 94 "//base", |
95 "//base:i18n", | 95 "//base:i18n", |
96 "//base:prefs", | |
97 "//components/favicon_base", | 96 "//components/favicon_base", |
98 "//components/history/core/common", | 97 "//components/history/core/common", |
99 "//components/keyed_service/core", | 98 "//components/keyed_service/core", |
| 99 "//components/prefs", |
100 "//components/query_parser", | 100 "//components/query_parser", |
101 "//components/signin/core/browser", | 101 "//components/signin/core/browser", |
102 "//components/sync_driver", | 102 "//components/sync_driver", |
103 "//components/url_formatter", | 103 "//components/url_formatter", |
104 "//google_apis", | 104 "//google_apis", |
105 "//net", | 105 "//net", |
106 "//sql", | 106 "//sql", |
107 "//sync", | 107 "//sync", |
108 "//third_party/sqlite", | 108 "//third_party/sqlite", |
109 "//ui/base", | 109 "//ui/base", |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
153 "typed_url_syncable_service_unittest.cc", | 153 "typed_url_syncable_service_unittest.cc", |
154 "url_database_unittest.cc", | 154 "url_database_unittest.cc", |
155 "url_utils_unittest.cc", | 155 "url_utils_unittest.cc", |
156 "visit_database_unittest.cc", | 156 "visit_database_unittest.cc", |
157 "visit_filter_unittest.cc", | 157 "visit_filter_unittest.cc", |
158 "visit_tracker_unittest.cc", | 158 "visit_tracker_unittest.cc", |
159 ] | 159 ] |
160 deps = [ | 160 deps = [ |
161 ":browser", | 161 ":browser", |
162 "//base", | 162 "//base", |
163 "//base:prefs_test_support", | |
164 "//base/test:test_support", | 163 "//base/test:test_support", |
165 "//components/favicon_base", | 164 "//components/favicon_base", |
166 "//components/history/core/common", | 165 "//components/history/core/common", |
167 "//components/history/core/test", | 166 "//components/history/core/test", |
| 167 "//components/prefs:test_support", |
168 "//components/sync_driver:test_support", | 168 "//components/sync_driver:test_support", |
169 "//sql", | 169 "//sql", |
170 "//sql:test_support", | 170 "//sql:test_support", |
171 "//sync:test_support_sync_api", | 171 "//sync:test_support_sync_api", |
172 "//testing/gtest", | 172 "//testing/gtest", |
173 "//ui/gfx:gfx", | 173 "//ui/gfx:gfx", |
174 "//url", | 174 "//url", |
175 ] | 175 ] |
176 if (is_android) { | 176 if (is_android) { |
177 sources += [ "android/android_history_types_unittest.cc" ] | 177 sources += [ "android/android_history_types_unittest.cc" ] |
178 } | 178 } |
179 } | 179 } |
OLD | NEW |