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

Side by Side Diff: components/webdata_services/BUILD.gn

Issue 2801513002: [Payments] Add web app manifest section table in SQLite web database (Closed)
Patch Set: address comments Created 3 years, 8 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("webdata_services") { 5 static_library("webdata_services") {
6 output_name = "webdata_services" 6 output_name = "webdata_services"
7 7
8 sources = [ 8 sources = [
9 "web_data_service_wrapper.cc", 9 "web_data_service_wrapper.cc",
10 "web_data_service_wrapper.h", 10 "web_data_service_wrapper.h",
11 ] 11 ]
12 12
13 deps = [ 13 deps = [
14 "//base", 14 "//base",
15 "//components/autofill/core/browser", 15 "//components/autofill/core/browser",
16 "//components/keyed_service/core", 16 "//components/keyed_service/core",
17 "//components/password_manager/core/browser", 17 "//components/password_manager/core/browser",
18 "//components/payments/content:utils",
18 "//components/search_engines", 19 "//components/search_engines",
19 "//components/signin/core/browser", 20 "//components/signin/core/browser",
20 "//components/sync", 21 "//components/sync",
21 "//components/webdata/common", 22 "//components/webdata/common",
22 "//sql", 23 "//sql",
23 ] 24 ]
24 } 25 }
25 26
26 static_library("test_support") { 27 static_library("test_support") {
27 testonly = true 28 testonly = true
28 sources = [ 29 sources = [
29 "web_data_service_test_util.cc", 30 "web_data_service_test_util.cc",
30 "web_data_service_test_util.h", 31 "web_data_service_test_util.h",
31 ] 32 ]
32 33
33 deps = [ 34 deps = [
34 ":webdata_services", 35 ":webdata_services",
35 "//base", 36 "//base",
36 "//components/autofill/core/browser", 37 "//components/autofill/core/browser",
37 "//components/signin/core/browser", 38 "//components/signin/core/browser",
38 ] 39 ]
39 } 40 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698