| 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", |
| 96 "//google_apis", | 97 "//google_apis", |
| 97 "//net", | 98 "//net", |
| 98 "//sql", | 99 "//sql", |
| 99 "//sync", | 100 "//sync", |
| 100 "//third_party/sqlite", | 101 "//third_party/sqlite", |
| 101 "//ui/base", | 102 "//ui/base", |
| 102 "//ui/gfx", | 103 "//ui/gfx", |
| 103 "//url", | 104 "//url", |
| 104 ] | 105 ] |
| 105 | 106 |
| (...skipping 14 matching lines...) Expand all Loading... |
| 120 "android/sql_handler.h", | 121 "android/sql_handler.h", |
| 121 "android/urls_sql_handler.cc", | 122 "android/urls_sql_handler.cc", |
| 122 "android/urls_sql_handler.h", | 123 "android/urls_sql_handler.h", |
| 123 "android/visit_sql_handler.cc", | 124 "android/visit_sql_handler.cc", |
| 124 "android/visit_sql_handler.h", | 125 "android/visit_sql_handler.h", |
| 125 ] | 126 ] |
| 126 } | 127 } |
| 127 | 128 |
| 128 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 129 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
| 129 } | 130 } |
| OLD | NEW |