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

Side by Side Diff: components/payments/android/BUILD.gn

Issue 2838433002: [Payments] Cache payment manifests. (Closed)
Patch Set: fix tests 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 2017 The Chromium Authors. All rights reserved. 1 # Copyright 2017 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("android") { 5 static_library("android") {
6 sources = [ 6 sources = [
7 "payment_manifest_web_data_service.cc",
8 "payment_manifest_web_data_service.h",
7 "payment_method_manifest_table.cc", 9 "payment_method_manifest_table.cc",
8 "payment_method_manifest_table.h", 10 "payment_method_manifest_table.h",
9 "web_app_manifest_section_table.cc", 11 "web_app_manifest_section_table.cc",
10 "web_app_manifest_section_table.h", 12 "web_app_manifest_section_table.h",
11 ] 13 ]
12 14
13 deps = [ 15 deps = [
14 "//components/payments/mojom:mojom_parser", 16 "//components/payments/mojom:mojom_parser",
15 "//components/webdata/common", 17 "//components/webdata/common",
16 "//sql", 18 "//sql",
17 ] 19 ]
18 } 20 }
19 21
20 source_set("unit_tests") { 22 source_set("unit_tests") {
21 testonly = true 23 testonly = true
22 sources = [ 24 sources = [
23 "payment_method_manifest_table_unittest.cc", 25 "payment_method_manifest_table_unittest.cc",
24 "web_app_manifest_section_table_unittest.cc", 26 "web_app_manifest_section_table_unittest.cc",
25 ] 27 ]
26 28
27 deps = [ 29 deps = [
28 ":android", 30 ":android",
29 "//base", 31 "//base",
30 "//testing/gtest", 32 "//testing/gtest",
31 ] 33 ]
32 } 34 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698