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 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
91 deps = [ | 91 deps = [ |
92 "//base", | 92 "//base", |
93 "//base:i18n", | 93 "//base:i18n", |
94 "//components/favicon_base", | 94 "//components/favicon_base", |
95 "//components/history/core/common", | 95 "//components/history/core/common", |
96 "//components/keyed_service/core", | 96 "//components/keyed_service/core", |
97 "//components/prefs", | 97 "//components/prefs", |
98 "//components/query_parser", | 98 "//components/query_parser", |
99 "//components/signin/core/browser", | 99 "//components/signin/core/browser", |
100 "//components/sync", | 100 "//components/sync", |
101 "//components/sync_driver", | |
102 "//components/url_formatter", | 101 "//components/url_formatter", |
103 "//components/version_info", | 102 "//components/version_info", |
104 "//google_apis", | 103 "//google_apis", |
105 "//net", | 104 "//net", |
106 "//sql", | 105 "//sql", |
107 "//third_party/sqlite", | 106 "//third_party/sqlite", |
108 "//ui/base", | 107 "//ui/base", |
109 "//ui/gfx", | 108 "//ui/gfx", |
110 "//url", | 109 "//url", |
111 ] | 110 ] |
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
200 ":unit_tests_bundle_data", | 199 ":unit_tests_bundle_data", |
201 "//base", | 200 "//base", |
202 "//base/test:test_support", | 201 "//base/test:test_support", |
203 "//components/favicon_base", | 202 "//components/favicon_base", |
204 "//components/history/core/common", | 203 "//components/history/core/common", |
205 "//components/history/core/test", | 204 "//components/history/core/test", |
206 "//components/prefs:test_support", | 205 "//components/prefs:test_support", |
207 "//components/signin/core/browser", | 206 "//components/signin/core/browser", |
208 "//components/signin/core/browser:test_support", | 207 "//components/signin/core/browser:test_support", |
209 "//components/sync:test_support_sync_api", | 208 "//components/sync:test_support_sync_api", |
210 "//components/sync_driver:test_support", | 209 "//components/sync:test_support_sync_driver", |
211 "//sql", | 210 "//sql", |
212 "//sql:test_support", | 211 "//sql:test_support", |
213 "//testing/gtest", | 212 "//testing/gtest", |
214 "//ui/gfx", | 213 "//ui/gfx", |
215 "//ui/gfx:test_support", | 214 "//ui/gfx:test_support", |
216 "//url", | 215 "//url", |
217 ] | 216 ] |
218 if (is_android) { | 217 if (is_android) { |
219 sources += [ "android/android_history_types_unittest.cc" ] | 218 sources += [ "android/android_history_types_unittest.cc" ] |
220 } | 219 } |
221 } | 220 } |
OLD | NEW |