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 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
88 public_deps = [ | 88 public_deps = [ |
89 "//skia", | 89 "//skia", |
90 ] | 90 ] |
91 | 91 |
92 deps = [ | 92 deps = [ |
93 "//base", | 93 "//base", |
94 "//base:i18n", | 94 "//base:i18n", |
95 "//components/favicon_base", | 95 "//components/favicon_base", |
96 "//components/history/core/common", | 96 "//components/history/core/common", |
97 "//components/keyed_service/core", | 97 "//components/keyed_service/core", |
98 "//components/memory_coordinator/browser", | |
99 "//components/prefs", | 98 "//components/prefs", |
100 "//components/query_parser", | 99 "//components/query_parser", |
101 "//components/signin/core/browser", | 100 "//components/signin/core/browser", |
102 "//components/sync", | 101 "//components/sync", |
103 "//components/url_formatter", | 102 "//components/url_formatter", |
104 "//components/version_info", | 103 "//components/version_info", |
105 "//google_apis", | 104 "//google_apis", |
106 "//net", | 105 "//net", |
107 "//sql", | 106 "//sql", |
108 "//third_party/sqlite", | 107 "//third_party/sqlite", |
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
213 "//sql:test_support", | 212 "//sql:test_support", |
214 "//testing/gtest", | 213 "//testing/gtest", |
215 "//ui/gfx", | 214 "//ui/gfx", |
216 "//ui/gfx:test_support", | 215 "//ui/gfx:test_support", |
217 "//url", | 216 "//url", |
218 ] | 217 ] |
219 if (is_android) { | 218 if (is_android) { |
220 sources += [ "android/android_history_types_unittest.cc" ] | 219 sources += [ "android/android_history_types_unittest.cc" ] |
221 } | 220 } |
222 } | 221 } |
OLD | NEW |