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") | |
6 | |
7 static_library("browser") { | 5 static_library("browser") { |
8 sources = [ | 6 sources = [ |
9 "download_constants.h", | 7 "download_constants.h", |
10 "download_database.cc", | 8 "download_database.cc", |
11 "download_database.h", | 9 "download_database.h", |
12 "download_row.cc", | 10 "download_row.cc", |
13 "download_row.h", | 11 "download_row.h", |
14 "download_types.cc", | 12 "download_types.cc", |
15 "download_types.h", | 13 "download_types.h", |
16 "expire_history_backend.cc", | 14 "expire_history_backend.cc", |
(...skipping 10 matching lines...) Expand all Loading... |
27 "history_database_params.cc", | 25 "history_database_params.cc", |
28 "history_database_params.h", | 26 "history_database_params.h", |
29 "history_db_task.h", | 27 "history_db_task.h", |
30 "history_match.cc", | 28 "history_match.cc", |
31 "history_match.h", | 29 "history_match.h", |
32 "history_service_observer.h", | 30 "history_service_observer.h", |
33 "history_types.cc", | 31 "history_types.cc", |
34 "history_types.h", | 32 "history_types.h", |
35 "in_memory_database.cc", | 33 "in_memory_database.cc", |
36 "in_memory_database.h", | 34 "in_memory_database.h", |
37 "in_memory_url_index_types.cc", | |
38 "in_memory_url_index_types.h", | |
39 "keyword_id.h", | 35 "keyword_id.h", |
40 "keyword_search_term.cc", | 36 "keyword_search_term.cc", |
41 "keyword_search_term.h", | 37 "keyword_search_term.h", |
42 "page_usage_data.cc", | 38 "page_usage_data.cc", |
43 "page_usage_data.h", | 39 "page_usage_data.h", |
44 "scored_history_match.cc", | |
45 "scored_history_match.h", | |
46 "thumbnail_database.cc", | 40 "thumbnail_database.cc", |
47 "thumbnail_database.h", | 41 "thumbnail_database.h", |
48 "top_sites.cc", | 42 "top_sites.cc", |
49 "top_sites.h", | 43 "top_sites.h", |
50 "top_sites_backend.cc", | 44 "top_sites_backend.cc", |
51 "top_sites_backend.h", | 45 "top_sites_backend.h", |
52 "top_sites_cache.cc", | 46 "top_sites_cache.cc", |
53 "top_sites_cache.h", | 47 "top_sites_cache.h", |
54 "top_sites_database.cc", | 48 "top_sites_database.cc", |
55 "top_sites_database.h", | 49 "top_sites_database.h", |
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
107 "android/sql_handler.h", | 101 "android/sql_handler.h", |
108 "android/urls_sql_handler.cc", | 102 "android/urls_sql_handler.cc", |
109 "android/urls_sql_handler.h", | 103 "android/urls_sql_handler.h", |
110 "android/visit_sql_handler.cc", | 104 "android/visit_sql_handler.cc", |
111 "android/visit_sql_handler.h", | 105 "android/visit_sql_handler.h", |
112 ] | 106 ] |
113 } | 107 } |
114 | 108 |
115 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 109 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
116 } | 110 } |
117 | |
118 proto_library("proto") { | |
119 sources = [ | |
120 "in_memory_url_index_cache.proto", | |
121 ] | |
122 } | |
OLD | NEW |