| 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_method_manifest_table.cc", | 7 "payment_method_manifest_table.cc", |
| 8 "payment_method_manifest_table.h", | 8 "payment_method_manifest_table.h", |
| 9 "web_app_manifest_section_table.cc", | 9 "web_app_manifest_section_table.cc", |
| 10 "web_app_manifest_section_table.h", | 10 "web_app_manifest_section_table.h", |
| 11 ] | 11 ] |
| 12 | 12 |
| 13 deps = [ | 13 deps = [ |
| 14 "//components/payments/content:mojom_parser", | 14 "//components/payments/mojom:mojom_parser", |
| 15 "//components/webdata/common", | 15 "//components/webdata/common", |
| 16 "//sql", | 16 "//sql", |
| 17 ] | 17 ] |
| 18 } | 18 } |
| 19 | 19 |
| 20 source_set("unit_tests") { | 20 source_set("unit_tests") { |
| 21 testonly = true | 21 testonly = true |
| 22 sources = [ | 22 sources = [ |
| 23 "payment_method_manifest_table_unittest.cc", | 23 "payment_method_manifest_table_unittest.cc", |
| 24 "web_app_manifest_section_table_unittest.cc", | 24 "web_app_manifest_section_table_unittest.cc", |
| 25 ] | 25 ] |
| 26 | 26 |
| 27 deps = [ | 27 deps = [ |
| 28 ":android", | 28 ":android", |
| 29 "//base", | 29 "//base", |
| 30 "//testing/gtest", | 30 "//testing/gtest", |
| 31 ] | 31 ] |
| 32 } | 32 } |
| OLD | NEW |