| 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", |
| 44 "thumbnail_database.cc", | 46 "thumbnail_database.cc", |
| 45 "thumbnail_database.h", | 47 "thumbnail_database.h", |
| 46 "top_sites.cc", | 48 "top_sites.cc", |
| 47 "top_sites.h", | 49 "top_sites.h", |
| 48 "top_sites_backend.cc", | 50 "top_sites_backend.cc", |
| 49 "top_sites_backend.h", | 51 "top_sites_backend.h", |
| 50 "top_sites_cache.cc", | 52 "top_sites_cache.cc", |
| 51 "top_sites_cache.h", | 53 "top_sites_cache.h", |
| 52 "top_sites_database.cc", | 54 "top_sites_database.cc", |
| 53 "top_sites_database.h", | 55 "top_sites_database.h", |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 103 "android/visit_sql_handler.h", | 105 "android/visit_sql_handler.h", |
| 104 ] | 106 ] |
| 105 } | 107 } |
| 106 } | 108 } |
| 107 | 109 |
| 108 proto_library("proto") { | 110 proto_library("proto") { |
| 109 sources = [ | 111 sources = [ |
| 110 "in_memory_url_index_cache.proto", | 112 "in_memory_url_index_cache.proto", |
| 111 ] | 113 ] |
| 112 } | 114 } |
| OLD | NEW |