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

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

Issue 642623004: Rename VisitDatabaseObserver to HistoryServiceObserver (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@373326
Patch Set: Created 6 years, 2 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 static_library("browser") { 5 static_library("browser") {
6 sources = [ 6 sources = [
7 "history_client.cc", 7 "history_client.cc",
8 "history_client.h", 8 "history_client.h",
9 "history_match.cc", 9 "history_match.cc",
10 "history_match.h", 10 "history_match.h",
11 "history_service_observer.cc",
12 "history_service_observer.h",
13 "history_types.cc", 11 "history_types.cc",
14 "history_types.h", 12 "history_types.h",
15 "in_memory_database.cc", 13 "in_memory_database.cc",
16 "in_memory_database.h", 14 "in_memory_database.h",
17 "keyword_id.h", 15 "keyword_id.h",
18 "keyword_search_term.cc", 16 "keyword_search_term.cc",
19 "keyword_search_term.h", 17 "keyword_search_term.h",
20 "page_usage_data.cc", 18 "page_usage_data.cc",
21 "page_usage_data.h", 19 "page_usage_data.h",
22 "top_sites_observer.h", 20 "top_sites_observer.h",
23 "url_database.cc", 21 "url_database.cc",
24 "url_database.h", 22 "url_database.h",
25 "url_row.cc", 23 "url_row.cc",
26 "url_row.h", 24 "url_row.h",
27 ] 25 ]
28 26
29 deps = [ 27 deps = [
30 "//base", 28 "//base",
31 "//components/favicon_base", 29 "//components/favicon_base",
32 "//components/keyed_service/core", 30 "//components/keyed_service/core",
33 "//components/query_parser", 31 "//components/query_parser",
34 "//net", 32 "//net",
35 "//sql", 33 "//sql",
36 "//ui/base", 34 "//ui/base",
37 "//ui/gfx", 35 "//ui/gfx",
38 ] 36 ]
39 } 37 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698