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

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

Issue 2261073002: Make HistoryBackend a client of memory coordinator (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: singleton Created 4 years, 3 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 "delete_directive_handler.cc", 7 "delete_directive_handler.cc",
8 "delete_directive_handler.h", 8 "delete_directive_handler.h",
9 "download_constants.h", 9 "download_constants.h",
10 "download_database.cc", 10 "download_database.cc",
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
87 public_deps = [ 87 public_deps = [
88 "//skia", 88 "//skia",
89 ] 89 ]
90 90
91 deps = [ 91 deps = [
92 "//base", 92 "//base",
93 "//base:i18n", 93 "//base:i18n",
94 "//components/favicon_base", 94 "//components/favicon_base",
95 "//components/history/core/common", 95 "//components/history/core/common",
96 "//components/keyed_service/core", 96 "//components/keyed_service/core",
97 "//components/memory_coordinator/browser",
97 "//components/prefs", 98 "//components/prefs",
98 "//components/query_parser", 99 "//components/query_parser",
99 "//components/signin/core/browser", 100 "//components/signin/core/browser",
100 "//components/sync", 101 "//components/sync",
101 "//components/url_formatter", 102 "//components/url_formatter",
102 "//components/version_info", 103 "//components/version_info",
103 "//google_apis", 104 "//google_apis",
104 "//net", 105 "//net",
105 "//sql", 106 "//sql",
106 "//third_party/sqlite", 107 "//third_party/sqlite",
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after
211 "//sql:test_support", 212 "//sql:test_support",
212 "//testing/gtest", 213 "//testing/gtest",
213 "//ui/gfx", 214 "//ui/gfx",
214 "//ui/gfx:test_support", 215 "//ui/gfx:test_support",
215 "//url", 216 "//url",
216 ] 217 ]
217 if (is_android) { 218 if (is_android) {
218 sources += [ "android/android_history_types_unittest.cc" ] 219 sources += [ "android/android_history_types_unittest.cc" ]
219 } 220 }
220 } 221 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698