| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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 import("//mojo/public/tools/bindings/mojom.gni") | 5 import("//mojo/public/tools/bindings/mojom.gni") |
| 6 | 6 |
| 7 static_library("content") { | 7 static_library("content") { |
| 8 sources = [ | 8 sources = [ |
| 9 "payment_request.cc", | 9 "payment_request.cc", |
| 10 "payment_request.h", | 10 "payment_request.h", |
| (...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 86 "//third_party/libaddressinput", | 86 "//third_party/libaddressinput", |
| 87 ] | 87 ] |
| 88 } | 88 } |
| 89 | 89 |
| 90 source_set("unit_tests") { | 90 source_set("unit_tests") { |
| 91 testonly = true | 91 testonly = true |
| 92 sources = [ | 92 sources = [ |
| 93 "payment_manifest_downloader_unittest.cc", | 93 "payment_manifest_downloader_unittest.cc", |
| 94 "payment_request_spec_unittest.cc", | 94 "payment_request_spec_unittest.cc", |
| 95 "payment_request_state_unittest.cc", | 95 "payment_request_state_unittest.cc", |
| 96 "payment_response_helper_unittest.cc", |
| 96 "payments_validators_unittest.cc", | 97 "payments_validators_unittest.cc", |
| 97 ] | 98 ] |
| 98 | 99 |
| 99 deps = [ | 100 deps = [ |
| 100 ":content", | 101 ":content", |
| 101 ":mojom", | 102 ":mojom", |
| 102 ":utils", | 103 ":utils", |
| 103 "//base", | 104 "//base", |
| 104 "//base/test:test_support", | 105 "//base/test:test_support", |
| 105 "//components/autofill/core/browser", | 106 "//components/autofill/core/browser", |
| 106 "//components/autofill/core/browser:test_support", | 107 "//components/autofill/core/browser:test_support", |
| 107 "//components/payments/core", | 108 "//components/payments/core", |
| 108 "//content/test:test_support", | 109 "//content/test:test_support", |
| 109 "//net:test_support", | 110 "//net:test_support", |
| 110 "//testing/gtest", | 111 "//testing/gtest", |
| 111 "//third_party/icu", | 112 "//third_party/icu", |
| 112 "//third_party/libaddressinput:test_support", | 113 "//third_party/libaddressinput:test_support", |
| 113 ] | 114 ] |
| 114 } | 115 } |
| OLD | NEW |