Chromium Code Reviews

Side by Side Diff: components/webdata/common/BUILD.gn

Issue 962903003: Rename WebDataServiceBackend to WebDatabaseBackend (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase and fix nits Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff |
« no previous file with comments | « components/webdata.gypi ('k') | components/webdata/common/web_data_service_backend.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 component("common") { 5 component("common") {
6 output_name = "webdata_common" 6 output_name = "webdata_common"
7 7
8 sources = [ 8 sources = [
9 "web_data_request_manager.cc", 9 "web_data_request_manager.cc",
10 "web_data_request_manager.h", 10 "web_data_request_manager.h",
11 "web_data_results.h", 11 "web_data_results.h",
12 "web_data_service_backend.cc",
13 "web_data_service_backend.h",
14 "web_data_service_base.cc", 12 "web_data_service_base.cc",
15 "web_data_service_base.h", 13 "web_data_service_base.h",
16 "web_data_service_consumer.h", 14 "web_data_service_consumer.h",
17 "web_database.cc", 15 "web_database.cc",
18 "web_database.h", 16 "web_database.h",
17 "web_database_backend.cc",
18 "web_database_backend.h",
19 "web_database_service.cc", 19 "web_database_service.cc",
20 "web_database_service.h", 20 "web_database_service.h",
21 "web_database_table.cc", 21 "web_database_table.cc",
22 "web_database_table.h", 22 "web_database_table.h",
23 "webdata_constants.cc", 23 "webdata_constants.cc",
24 "webdata_constants.h", 24 "webdata_constants.h",
25 "webdata_export.h", 25 "webdata_export.h",
26 ] 26 ]
27 27
28 defines = [ "WEBDATA_IMPLEMENTATION" ] 28 defines = [ "WEBDATA_IMPLEMENTATION" ]
(...skipping 14 matching lines...)
43 ":common", 43 ":common",
44 "//base", 44 "//base",
45 "//components/autofill/core/browser", 45 "//components/autofill/core/browser",
46 "//components/password_manager/core/browser", 46 "//components/password_manager/core/browser",
47 "//components/search_engines", 47 "//components/search_engines",
48 "//components/signin/core/browser", 48 "//components/signin/core/browser",
49 "//sql", 49 "//sql",
50 "//testing/gtest", 50 "//testing/gtest",
51 ] 51 ]
52 } 52 }
OLDNEW
« no previous file with comments | « components/webdata.gypi ('k') | components/webdata/common/web_data_service_backend.h » ('j') | no next file with comments »

Powered by Google App Engine