| 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", |
| 11 "download_database.h", | 11 "download_database.h", |
| 12 "download_row.cc", | 12 "download_row.cc", |
| 13 "download_row.h", | 13 "download_row.h", |
| 14 "download_types.cc", | 14 "download_types.cc", |
| 15 "download_types.h", | 15 "download_types.h", |
| 16 "expire_history_backend.cc", | 16 "expire_history_backend.cc", |
| 17 "expire_history_backend.h", | 17 "expire_history_backend.h", |
| 18 "history_backend.cc", | 18 "history_backend.cc", |
| 19 "history_backend.h", | 19 "history_backend.h", |
| 20 "history_backend_client.h", |
| 20 "history_backend_notifier.h", | 21 "history_backend_notifier.h", |
| 21 "history_backend_observer.h", | 22 "history_backend_observer.h", |
| 22 "history_client.cc", | |
| 23 "history_client.h", | 23 "history_client.h", |
| 24 "history_constants.cc", | 24 "history_constants.cc", |
| 25 "history_constants.h", | 25 "history_constants.h", |
| 26 "history_context.h", | 26 "history_context.h", |
| 27 "history_database.cc", | 27 "history_database.cc", |
| 28 "history_database.h", | 28 "history_database.h", |
| 29 "history_database_params.cc", | 29 "history_database_params.cc", |
| 30 "history_database_params.h", | 30 "history_database_params.h", |
| 31 "history_db_task.h", | 31 "history_db_task.h", |
| 32 "history_match.cc", | 32 "history_match.cc", |
| (...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 120 "android/sql_handler.h", | 120 "android/sql_handler.h", |
| 121 "android/urls_sql_handler.cc", | 121 "android/urls_sql_handler.cc", |
| 122 "android/urls_sql_handler.h", | 122 "android/urls_sql_handler.h", |
| 123 "android/visit_sql_handler.cc", | 123 "android/visit_sql_handler.cc", |
| 124 "android/visit_sql_handler.h", | 124 "android/visit_sql_handler.h", |
| 125 ] | 125 ] |
| 126 } | 126 } |
| 127 | 127 |
| 128 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 128 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
| 129 } | 129 } |
| OLD | NEW |