summaryrefslogtreecommitdiff
path: root/chromium/components/payments/android/BUILD.gn
blob: fc5fe8b95a78fd23e24e68e8dbb79eadc23d1134 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# Copyright 2017 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.

static_library("android") {
  sources = [
    "payment_method_manifest_table.cc",
    "payment_method_manifest_table.h",
    "web_app_manifest_section_table.cc",
    "web_app_manifest_section_table.h",
  ]

  deps = [
    "//components/payments/content:mojom_parser",
    "//components/webdata/common",
    "//sql",
  ]
}

source_set("unit_tests") {
  testonly = true
  sources = [
    "payment_method_manifest_table_unittest.cc",
    "web_app_manifest_section_table_unittest.cc",
  ]

  deps = [
    ":android",
    "//base",
    "//testing/gtest",
  ]
}