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", |
(...skipping 23 matching lines...) Expand all Loading... |
34 "history_types.h", | 34 "history_types.h", |
35 "in_memory_database.cc", | 35 "in_memory_database.cc", |
36 "in_memory_database.h", | 36 "in_memory_database.h", |
37 "in_memory_url_index_types.cc", | 37 "in_memory_url_index_types.cc", |
38 "in_memory_url_index_types.h", | 38 "in_memory_url_index_types.h", |
39 "keyword_id.h", | 39 "keyword_id.h", |
40 "keyword_search_term.cc", | 40 "keyword_search_term.cc", |
41 "keyword_search_term.h", | 41 "keyword_search_term.h", |
42 "page_usage_data.cc", | 42 "page_usage_data.cc", |
43 "page_usage_data.h", | 43 "page_usage_data.h", |
| 44 "scored_history_match.cc", |
| 45 "scored_history_match.h", |
| 46 "scored_history_match_client.cc", |
| 47 "scored_history_match_client.h", |
44 "thumbnail_database.cc", | 48 "thumbnail_database.cc", |
45 "thumbnail_database.h", | 49 "thumbnail_database.h", |
46 "top_sites.cc", | 50 "top_sites.cc", |
47 "top_sites.h", | 51 "top_sites.h", |
48 "top_sites_backend.cc", | 52 "top_sites_backend.cc", |
49 "top_sites_backend.h", | 53 "top_sites_backend.h", |
50 "top_sites_cache.cc", | 54 "top_sites_cache.cc", |
51 "top_sites_cache.h", | 55 "top_sites_cache.h", |
52 "top_sites_database.cc", | 56 "top_sites_database.cc", |
53 "top_sites_database.h", | 57 "top_sites_database.h", |
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
103 "android/visit_sql_handler.h", | 107 "android/visit_sql_handler.h", |
104 ] | 108 ] |
105 } | 109 } |
106 } | 110 } |
107 | 111 |
108 proto_library("proto") { | 112 proto_library("proto") { |
109 sources = [ | 113 sources = [ |
110 "in_memory_url_index_cache.proto", | 114 "in_memory_url_index_cache.proto", |
111 ] | 115 ] |
112 } | 116 } |
OLD | NEW |