| 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 25 matching lines...) Expand all Loading... |
| 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 "thumbnail_database.cc", | 44 "thumbnail_database.cc", |
| 45 "thumbnail_database.h", | 45 "thumbnail_database.h", |
| 46 "top_sites.cc", |
| 47 "top_sites.h", |
| 48 "top_sites_backend.cc", |
| 49 "top_sites_backend.h", |
| 46 "top_sites_cache.cc", | 50 "top_sites_cache.cc", |
| 47 "top_sites_cache.h", | 51 "top_sites_cache.h", |
| 52 "top_sites_database.cc", |
| 53 "top_sites_database.h", |
| 48 "top_sites_observer.h", | 54 "top_sites_observer.h", |
| 49 "url_database.cc", | 55 "url_database.cc", |
| 50 "url_database.h", | 56 "url_database.h", |
| 51 "url_row.cc", | 57 "url_row.cc", |
| 52 "url_row.h", | 58 "url_row.h", |
| 53 "url_utils.cc", | 59 "url_utils.cc", |
| 54 "url_utils.h", | 60 "url_utils.h", |
| 55 "visit_database.cc", | 61 "visit_database.cc", |
| 56 "visit_database.h", | 62 "visit_database.h", |
| 57 "visit_filter.cc", | 63 "visit_filter.cc", |
| 58 "visit_filter.h", | 64 "visit_filter.h", |
| 59 "visit_tracker.cc", | 65 "visit_tracker.cc", |
| 60 "visit_tracker.h", | 66 "visit_tracker.h", |
| 61 "visitsegment_database.cc", | 67 "visitsegment_database.cc", |
| 62 "visitsegment_database.h", | 68 "visitsegment_database.h", |
| 63 ] | 69 ] |
| 64 | 70 |
| 65 deps = [ | 71 deps = [ |
| 66 "//base", | 72 "//base", |
| 67 "//components/favicon_base", | 73 "//components/favicon_base", |
| 68 "//components/keyed_service/core", | 74 "//components/keyed_service/core", |
| 69 "//components/query_parser", | 75 "//components/query_parser", |
| 70 "//net", | 76 "//net", |
| 77 "//skia", |
| 71 "//sql", | 78 "//sql", |
| 72 "//third_party/sqlite", | 79 "//third_party/sqlite", |
| 73 "//ui/base", | 80 "//ui/base", |
| 74 "//ui/gfx", | 81 "//ui/gfx", |
| 75 "//url", | 82 "//url", |
| 76 ] | 83 ] |
| 77 | 84 |
| 78 if (is_android) { | 85 if (is_android) { |
| 79 sources += [ | 86 sources += [ |
| 80 "android/android_cache_database.cc", | 87 "android/android_cache_database.cc", |
| (...skipping 15 matching lines...) Expand all Loading... |
| 96 "android/visit_sql_handler.h", | 103 "android/visit_sql_handler.h", |
| 97 ] | 104 ] |
| 98 } | 105 } |
| 99 } | 106 } |
| 100 | 107 |
| 101 proto_library("proto") { | 108 proto_library("proto") { |
| 102 sources = [ | 109 sources = [ |
| 103 "in_memory_url_index_cache.proto", | 110 "in_memory_url_index_cache.proto", |
| 104 ] | 111 ] |
| 105 } | 112 } |
| OLD | NEW |