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