| Index: components/payments/content/android/utility/BUILD.gn
|
| diff --git a/components/payments/content/android/utility/BUILD.gn b/components/payments/content/android/utility/BUILD.gn
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..7b0aead36f11bda62be3eeb587730373ec1bbabd
|
| --- /dev/null
|
| +++ b/components/payments/content/android/utility/BUILD.gn
|
| @@ -0,0 +1,29 @@
|
| +# 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("utility") {
|
| + sources = [
|
| + "fingerprint_parser.cc",
|
| + "fingerprint_parser.h",
|
| + "payment_manifest_parser.cc",
|
| + "payment_manifest_parser.h",
|
| + ]
|
| + deps = [
|
| + "//base",
|
| + "//components/payments/content/android:mojom",
|
| + ]
|
| +}
|
| +
|
| +source_set("unit_tests") {
|
| + testonly = true
|
| + sources = [
|
| + "fingerprint_parser_unittest.cc",
|
| + "payment_manifest_parser_unittest.cc",
|
| + ]
|
| + deps = [
|
| + ":utility",
|
| + "//base",
|
| + "//testing/gtest",
|
| + ]
|
| +}
|
|
|