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("//ios/web/js_compile.gni") | 5 import("//ios/web/js_compile.gni") |
6 | 6 |
7 source_set("payments") { | 7 source_set("payments") { |
8 configs += [ "//build/config/compiler:enable_arc" ] | 8 configs += [ "//build/config/compiler:enable_arc" ] |
9 sources = [ | 9 sources = [ |
10 "payment_request.h", | 10 "payment_request.h", |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
43 "//testing/gtest", | 43 "//testing/gtest", |
44 ] | 44 ] |
45 } | 45 } |
46 | 46 |
47 source_set("test_support") { | 47 source_set("test_support") { |
48 configs += [ "//build/config/compiler:enable_arc" ] | 48 configs += [ "//build/config/compiler:enable_arc" ] |
49 testonly = true | 49 testonly = true |
50 sources = [ | 50 sources = [ |
51 "payment_request_test_util.h", | 51 "payment_request_test_util.h", |
52 "payment_request_test_util.mm", | 52 "payment_request_test_util.mm", |
| 53 "test_payment_request.h", |
| 54 "test_payment_request.mm", |
53 ] | 55 ] |
54 deps = [ | 56 deps = [ |
55 ":payments", | 57 ":payments", |
56 "//base", | 58 "//base", |
| 59 "//components/autofill/core/browser", |
57 "//components/payments/core", | 60 "//components/payments/core", |
58 "//ios/web", | 61 "//ios/web", |
59 ] | 62 ] |
60 } | 63 } |
OLD | NEW |