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

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

Issue 2665243003: add a download slices table into history download db (Closed)
Patch Set: addressing comments Created 3 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 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",
11 "download_database.h", 11 "download_database.h",
12 "download_job_info.cc",
13 "download_job_info.h",
12 "download_row.cc", 14 "download_row.cc",
13 "download_row.h", 15 "download_row.h",
14 "download_types.cc", 16 "download_types.cc",
15 "download_types.h", 17 "download_types.h",
16 "expire_history_backend.cc", 18 "expire_history_backend.cc",
17 "expire_history_backend.h", 19 "expire_history_backend.h",
18 "history_backend.cc", 20 "history_backend.cc",
19 "history_backend.h", 21 "history_backend.h",
20 "history_backend_client.h", 22 "history_backend_client.h",
21 "history_backend_notifier.h", 23 "history_backend_notifier.h",
(...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after
214 "//sql:test_support", 216 "//sql:test_support",
215 "//testing/gtest", 217 "//testing/gtest",
216 "//ui/gfx", 218 "//ui/gfx",
217 "//ui/gfx:test_support", 219 "//ui/gfx:test_support",
218 "//url", 220 "//url",
219 ] 221 ]
220 if (is_android) { 222 if (is_android) {
221 sources += [ "android/android_history_types_unittest.cc" ] 223 sources += [ "android/android_history_types_unittest.cc" ]
222 } 224 }
223 } 225 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698