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 | 86 |
87 deps = [ | 87 deps = [ |
88 "//base", | 88 "//base", |
89 "//base:i18n", | 89 "//base:i18n", |
90 "//base:prefs", | 90 "//base:prefs", |
91 "//components/favicon_base", | 91 "//components/favicon_base", |
92 "//components/history/core/common", | 92 "//components/history/core/common", |
93 "//components/keyed_service/core", | 93 "//components/keyed_service/core", |
94 "//components/query_parser", | 94 "//components/query_parser", |
95 "//components/signin/core/browser", | 95 "//components/signin/core/browser", |
96 "//components/url_formatter", | |
97 "//google_apis", | 96 "//google_apis", |
98 "//net", | 97 "//net", |
99 "//sql", | 98 "//sql", |
100 "//sync", | 99 "//sync", |
101 "//third_party/sqlite", | 100 "//third_party/sqlite", |
102 "//ui/base", | 101 "//ui/base", |
103 "//ui/gfx", | 102 "//ui/gfx", |
104 "//url", | 103 "//url", |
105 ] | 104 ] |
106 | 105 |
(...skipping 14 matching lines...) Expand all Loading... |
121 "android/sql_handler.h", | 120 "android/sql_handler.h", |
122 "android/urls_sql_handler.cc", | 121 "android/urls_sql_handler.cc", |
123 "android/urls_sql_handler.h", | 122 "android/urls_sql_handler.h", |
124 "android/visit_sql_handler.cc", | 123 "android/visit_sql_handler.cc", |
125 "android/visit_sql_handler.h", | 124 "android/visit_sql_handler.h", |
126 ] | 125 ] |
127 } | 126 } |
128 | 127 |
129 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 128 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
130 } | 129 } |
OLD | NEW |