Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(55)

Side by Side Diff: components/history/core/browser/BUILD.gn

Issue 870063002: Componentize TopSites, TopSitesBackend, TopSitesDatabase (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@815983002
Patch Set: Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
34 "in_memory_database.h", 34 "in_memory_database.h",
35 "in_memory_url_index_types.cc", 35 "in_memory_url_index_types.cc",
36 "in_memory_url_index_types.h", 36 "in_memory_url_index_types.h",
37 "keyword_id.h", 37 "keyword_id.h",
38 "keyword_search_term.cc", 38 "keyword_search_term.cc",
39 "keyword_search_term.h", 39 "keyword_search_term.h",
40 "page_usage_data.cc", 40 "page_usage_data.cc",
41 "page_usage_data.h", 41 "page_usage_data.h",
42 "thumbnail_database.cc", 42 "thumbnail_database.cc",
43 "thumbnail_database.h", 43 "thumbnail_database.h",
44 "top_sites.cc",
45 "top_sites.h",
46 "top_sites_backend.cc",
47 "top_sites_backend.h",
44 "top_sites_cache.cc", 48 "top_sites_cache.cc",
45 "top_sites_cache.h", 49 "top_sites_cache.h",
50 "top_sites_database.cc",
51 "top_sites_database.h",
46 "top_sites_observer.h", 52 "top_sites_observer.h",
47 "url_database.cc", 53 "url_database.cc",
48 "url_database.h", 54 "url_database.h",
49 "url_row.cc", 55 "url_row.cc",
50 "url_row.h", 56 "url_row.h",
51 "url_utils.cc", 57 "url_utils.cc",
52 "url_utils.h", 58 "url_utils.h",
53 "visit_database.cc", 59 "visit_database.cc",
54 "visit_database.h", 60 "visit_database.h",
55 "visit_filter.cc", 61 "visit_filter.cc",
56 "visit_filter.h", 62 "visit_filter.h",
57 "visit_tracker.cc", 63 "visit_tracker.cc",
58 "visit_tracker.h", 64 "visit_tracker.h",
59 "visitsegment_database.cc", 65 "visitsegment_database.cc",
60 "visitsegment_database.h", 66 "visitsegment_database.h",
61 ] 67 ]
62 68
63 deps = [ 69 deps = [
64 "//base", 70 "//base",
65 "//components/favicon_base", 71 "//components/favicon_base",
66 "//components/keyed_service/core", 72 "//components/keyed_service/core",
67 "//components/query_parser", 73 "//components/query_parser",
68 "//net", 74 "//net",
75 "//skia",
69 "//sql", 76 "//sql",
70 "//third_party/sqlite", 77 "//third_party/sqlite",
71 "//ui/base", 78 "//ui/base",
72 "//ui/gfx", 79 "//ui/gfx",
73 "//url", 80 "//url",
74 ] 81 ]
75 82
76 if (is_android) { 83 if (is_android) {
77 sources += [ 84 sources += [
78 "android/android_cache_database.cc", 85 "android/android_cache_database.cc",
(...skipping 15 matching lines...) Expand all
94 "android/visit_sql_handler.h", 101 "android/visit_sql_handler.h",
95 ] 102 ]
96 } 103 }
97 } 104 }
98 105
99 proto_library("proto") { 106 proto_library("proto") {
100 sources = [ 107 sources = [
101 "in_memory_url_index_cache.proto", 108 "in_memory_url_index_cache.proto",
102 ] 109 ]
103 } 110 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698