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

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

Issue 882753002: Componentize WebHistoryService (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 5 years, 10 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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
53 "url_utils.cc", 53 "url_utils.cc",
54 "url_utils.h", 54 "url_utils.h",
55 "visit_database.cc", 55 "visit_database.cc",
56 "visit_database.h", 56 "visit_database.h",
57 "visit_filter.cc", 57 "visit_filter.cc",
58 "visit_filter.h", 58 "visit_filter.h",
59 "visit_tracker.cc", 59 "visit_tracker.cc",
60 "visit_tracker.h", 60 "visit_tracker.h",
61 "visitsegment_database.cc", 61 "visitsegment_database.cc",
62 "visitsegment_database.h", 62 "visitsegment_database.h",
63 "web_history_service.cc",
64 "web_history_service.h",
63 ] 65 ]
64 66
65 deps = [ 67 deps = [
66 "//base", 68 "//base",
67 "//components/favicon_base", 69 "//components/favicon_base",
68 "//components/keyed_service/core", 70 "//components/keyed_service/core",
69 "//components/query_parser", 71 "//components/query_parser",
72 "//components/signin/core/browser",
73 "//google_apis",
70 "//net", 74 "//net",
71 "//sql", 75 "//sql",
72 "//third_party/sqlite", 76 "//third_party/sqlite",
73 "//ui/base", 77 "//ui/base",
74 "//ui/gfx", 78 "//ui/gfx",
75 "//url", 79 "//url",
76 ] 80 ]
77 81
78 if (is_android) { 82 if (is_android) {
79 sources += [ 83 sources += [
(...skipping 16 matching lines...) Expand all
96 "android/visit_sql_handler.h", 100 "android/visit_sql_handler.h",
97 ] 101 ]
98 } 102 }
99 } 103 }
100 104
101 proto_library("proto") { 105 proto_library("proto") {
102 sources = [ 106 sources = [
103 "in_memory_url_index_cache.proto", 107 "in_memory_url_index_cache.proto",
104 ] 108 ]
105 } 109 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698