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

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

Issue 963823003: Move InMemoryURLIndex into chrome/browser/autocomplete (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@shortcut-database
Patch Set: Created 5 years, 9 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 "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 "thumbnail_database.cc", 44 "thumbnail_database.cc",
47 "thumbnail_database.h", 45 "thumbnail_database.h",
48 "top_sites.cc", 46 "top_sites.cc",
49 "top_sites.h", 47 "top_sites.h",
50 "top_sites_backend.cc", 48 "top_sites_backend.cc",
51 "top_sites_backend.h", 49 "top_sites_backend.h",
52 "top_sites_cache.cc", 50 "top_sites_cache.cc",
53 "top_sites_cache.h", 51 "top_sites_cache.h",
54 "top_sites_database.cc", 52 "top_sites_database.cc",
55 "top_sites_database.h", 53 "top_sites_database.h",
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
113 } 111 }
114 112
115 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] 113 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
116 } 114 }
117 115
118 proto_library("proto") { 116 proto_library("proto") {
119 sources = [ 117 sources = [
120 "in_memory_url_index_cache.proto", 118 "in_memory_url_index_cache.proto",
121 ] 119 ]
122 } 120 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698