| 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 import("//third_party/protobuf/proto_library.gni") | 5 import("//third_party/protobuf/proto_library.gni") |
| 6 | 6 |
| 7 static_library("browser") { | 7 static_library("browser") { |
| 8 sources = [ | 8 sources = [ |
| 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 "history_backend_notifier.h", | 16 "history_backend_notifier.h", |
| 17 "history_backend_observer.h", | 17 "history_backend_observer.h", |
| 18 "history_client.cc", | 18 "history_client.cc", |
| 19 "history_client.h", | 19 "history_client.h", |
| 20 "history_constants.cc", | 20 "history_constants.cc", |
| 21 "history_constants.h", | 21 "history_constants.h", |
| 22 "history_context.h", | 22 "history_context.h", |
| 23 "history_database.cc", |
| 24 "history_database.h", |
| 25 "history_database_params.cc", |
| 26 "history_database_params.h", |
| 23 "history_db_task.h", | 27 "history_db_task.h", |
| 24 "history_match.cc", | 28 "history_match.cc", |
| 25 "history_match.h", | 29 "history_match.h", |
| 26 "history_service_observer.h", | 30 "history_service_observer.h", |
| 27 "history_types.cc", | 31 "history_types.cc", |
| 28 "history_types.h", | 32 "history_types.h", |
| 29 "in_memory_database.cc", | 33 "in_memory_database.cc", |
| 30 "in_memory_database.h", | 34 "in_memory_database.h", |
| 31 "in_memory_url_index_types.cc", | 35 "in_memory_url_index_types.cc", |
| 32 "in_memory_url_index_types.h", | 36 "in_memory_url_index_types.h", |
| (...skipping 28 matching lines...) Expand all Loading... |
| 61 "//components/favicon_base", | 65 "//components/favicon_base", |
| 62 "//components/keyed_service/core", | 66 "//components/keyed_service/core", |
| 63 "//components/query_parser", | 67 "//components/query_parser", |
| 64 "//net", | 68 "//net", |
| 65 "//sql", | 69 "//sql", |
| 66 "//third_party/sqlite", | 70 "//third_party/sqlite", |
| 67 "//ui/base", | 71 "//ui/base", |
| 68 "//ui/gfx", | 72 "//ui/gfx", |
| 69 "//url", | 73 "//url", |
| 70 ] | 74 ] |
| 75 |
| 76 if (is_android) { |
| 77 sources += [ |
| 78 "android/android_cache_database.cc", |
| 79 "android/android_cache_database.h", |
| 80 "android/android_history_types.cc", |
| 81 "android/android_history_types.h", |
| 82 "android/android_time.h", |
| 83 "android/android_urls_database.cc", |
| 84 "android/android_urls_database.h", |
| 85 "android/android_urls_sql_handler.cc", |
| 86 "android/android_urls_sql_handler.h", |
| 87 "android/favicon_sql_handler.cc", |
| 88 "android/favicon_sql_handler.h", |
| 89 "android/sql_handler.cc", |
| 90 "android/sql_handler.h", |
| 91 "android/urls_sql_handler.cc", |
| 92 "android/urls_sql_handler.h", |
| 93 "android/visit_sql_handler.cc", |
| 94 "android/visit_sql_handler.h", |
| 95 ] |
| 96 } |
| 71 } | 97 } |
| 72 | 98 |
| 73 proto_library("proto") { | 99 proto_library("proto") { |
| 74 sources = [ | 100 sources = [ |
| 75 "in_memory_url_index_cache.proto", | 101 "in_memory_url_index_cache.proto", |
| 76 ] | 102 ] |
| 77 } | 103 } |
| OLD | NEW |