| 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 "ios_can_make_payment_query_factory.cc", | 10 "ios_can_make_payment_query_factory.cc", |
| (...skipping 27 matching lines...) Expand all Loading... |
| 38 deps = [ | 38 deps = [ |
| 39 ":payments", | 39 ":payments", |
| 40 ":test_support", | 40 ":test_support", |
| 41 "//base", | 41 "//base", |
| 42 "//base/test:test_support", | 42 "//base/test:test_support", |
| 43 "//components/autofill/core/browser", | 43 "//components/autofill/core/browser", |
| 44 "//components/autofill/core/browser:test_support", | 44 "//components/autofill/core/browser:test_support", |
| 45 "//components/payments/core", | 45 "//components/payments/core", |
| 46 "//ios/chrome/browser", | 46 "//ios/chrome/browser", |
| 47 "//ios/web", | 47 "//ios/web", |
| 48 "//testing/gmock", |
| 48 "//testing/gtest", | 49 "//testing/gtest", |
| 49 ] | 50 ] |
| 50 } | 51 } |
| 51 | 52 |
| 52 source_set("test_support") { | 53 source_set("test_support") { |
| 53 configs += [ "//build/config/compiler:enable_arc" ] | 54 configs += [ "//build/config/compiler:enable_arc" ] |
| 54 testonly = true | 55 testonly = true |
| 55 sources = [ | 56 sources = [ |
| 56 "payment_request_test_util.h", | 57 "payment_request_test_util.h", |
| 57 "payment_request_test_util.mm", | 58 "payment_request_test_util.mm", |
| 58 "test_payment_request.h", | 59 "test_payment_request.h", |
| 59 "test_payment_request.mm", | 60 "test_payment_request.mm", |
| 60 ] | 61 ] |
| 61 deps = [ | 62 deps = [ |
| 62 ":payments", | 63 ":payments", |
| 63 "//base", | 64 "//base", |
| 64 "//components/autofill/core/browser", | 65 "//components/autofill/core/browser", |
| 65 "//components/payments/core", | 66 "//components/payments/core", |
| 66 "//ios/web", | 67 "//ios/web", |
| 67 ] | 68 ] |
| 68 } | 69 } |
| OLD | NEW |