| 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 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 90 "//third_party/libaddressinput", | 90 "//third_party/libaddressinput", |
| 91 ] | 91 ] |
| 92 } | 92 } |
| 93 | 93 |
| 94 source_set("unit_tests") { | 94 source_set("unit_tests") { |
| 95 testonly = true | 95 testonly = true |
| 96 sources = [ | 96 sources = [ |
| 97 "payment_manifest_downloader_unittest.cc", | 97 "payment_manifest_downloader_unittest.cc", |
| 98 "payment_request_spec_unittest.cc", | 98 "payment_request_spec_unittest.cc", |
| 99 "payment_request_state_unittest.cc", | 99 "payment_request_state_unittest.cc", |
| 100 "payment_response_helper_unittest.cc", |
| 100 "payments_validators_unittest.cc", | 101 "payments_validators_unittest.cc", |
| 101 ] | 102 ] |
| 102 | 103 |
| 103 deps = [ | 104 deps = [ |
| 104 ":content", | 105 ":content", |
| 105 ":mojom", | 106 ":mojom", |
| 106 ":utils", | 107 ":utils", |
| 107 "//base", | 108 "//base", |
| 108 "//base/test:test_support", | 109 "//base/test:test_support", |
| 109 "//components/autofill/core/browser", | 110 "//components/autofill/core/browser", |
| 110 "//components/autofill/core/browser:test_support", | 111 "//components/autofill/core/browser:test_support", |
| 111 "//components/payments/core", | 112 "//components/payments/core", |
| 112 "//content/test:test_support", | 113 "//content/test:test_support", |
| 113 "//net:test_support", | 114 "//net:test_support", |
| 114 "//testing/gtest", | 115 "//testing/gtest", |
| 115 "//third_party/icu", | 116 "//third_party/icu", |
| 116 "//third_party/libaddressinput:test_support", | 117 "//third_party/libaddressinput:test_support", |
| 117 ] | 118 ] |
| 118 } | 119 } |
| OLD | NEW |