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

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: 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/search_engines", 18 "//components/search_engines",
19 "//components/signin/core/browser", 19 "//components/signin/core/browser",
20 "//components/sync", 20 "//components/sync",
21 "//components/webdata/common", 21 "//components/webdata/common",
22 "//sql", 22 "//sql",
23 ] 23 ]
24
25 if (is_android) {
26 deps += [ "//components/payments/android" ]
27 }
24 } 28 }
25 29
26 static_library("test_support") { 30 static_library("test_support") {
27 testonly = true 31 testonly = true
28 sources = [ 32 sources = [
29 "web_data_service_test_util.cc", 33 "web_data_service_test_util.cc",
30 "web_data_service_test_util.h", 34 "web_data_service_test_util.h",
31 ] 35 ]
32 36
33 deps = [ 37 deps = [
34 ":webdata_services", 38 ":webdata_services",
35 "//base", 39 "//base",
36 "//components/autofill/core/browser", 40 "//components/autofill/core/browser",
37 "//components/signin/core/browser", 41 "//components/signin/core/browser",
38 ] 42 ]
39 } 43 }
OLDNEW
« no previous file with comments | « components/payments/android/web_app_manifest_section_table_unittest.cc ('k') | components/webdata_services/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698