| 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", |
| 11 "ios_can_make_payment_query_factory.h", | 11 "ios_can_make_payment_query_factory.h", |
| 12 "payment_request.h", | 12 "payment_request.h", |
| 13 "payment_request.mm", | 13 "payment_request.mm", |
| 14 "payment_request_util.h", | 14 "payment_request_util.h", |
| 15 "payment_request_util.mm", | 15 "payment_request_util.mm", |
| 16 ] | 16 ] |
| 17 deps = [ | 17 deps = [ |
| 18 "//base", | 18 "//base", |
| 19 "//components/autofill/core/browser", | 19 "//components/autofill/core/browser", |
| 20 "//components/keyed_service/ios", | 20 "//components/keyed_service/ios", |
| 21 "//components/payments/core", | 21 "//components/payments/core", |
| 22 "//components/prefs", |
| 23 "//components/signin/core/browser", |
| 22 "//components/strings:components_strings_grit", | 24 "//components/strings:components_strings_grit", |
| 23 "//ios/chrome/browser", | 25 "//ios/chrome/browser", |
| 24 "//ios/chrome/browser/autofill", | 26 "//ios/chrome/browser/autofill", |
| 25 "//ios/chrome/browser/browser_state", | 27 "//ios/chrome/browser/browser_state", |
| 28 "//ios/chrome/browser/signin", |
| 26 "//ios/web", | 29 "//ios/web", |
| 27 "//ui/base", | 30 "//ui/base", |
| 28 ] | 31 ] |
| 29 libs = [ "UIKit.framework" ] | 32 libs = [ "UIKit.framework" ] |
| 30 } | 33 } |
| 31 | 34 |
| 32 source_set("unit_tests") { | 35 source_set("unit_tests") { |
| 33 configs += [ "//build/config/compiler:enable_arc" ] | 36 configs += [ "//build/config/compiler:enable_arc" ] |
| 34 testonly = true | 37 testonly = true |
| 35 sources = [ | 38 sources = [ |
| (...skipping 20 matching lines...) Expand all Loading... |
| 56 sources = [ | 59 sources = [ |
| 57 "payment_request_test_util.h", | 60 "payment_request_test_util.h", |
| 58 "payment_request_test_util.mm", | 61 "payment_request_test_util.mm", |
| 59 "test_payment_request.h", | 62 "test_payment_request.h", |
| 60 "test_payment_request.mm", | 63 "test_payment_request.mm", |
| 61 ] | 64 ] |
| 62 deps = [ | 65 deps = [ |
| 63 ":payments", | 66 ":payments", |
| 64 "//base", | 67 "//base", |
| 65 "//components/autofill/core/browser", | 68 "//components/autofill/core/browser", |
| 69 "//components/autofill/core/browser:test_support", |
| 66 "//components/payments/core", | 70 "//components/payments/core", |
| 71 "//components/prefs", |
| 67 "//ios/web", | 72 "//ios/web", |
| 68 ] | 73 ] |
| 69 } | 74 } |
| OLD | NEW |