OLD | NEW |
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 } |
OLD | NEW |