| OLD | NEW |
| 1 # Copyright 2017 The Chromium Authors. All rights reserved. | 1 # Copyright 2017 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 source_set("payments") { | 5 source_set("payments") { |
| 6 sources = [ | 6 sources = [ |
| 7 "sc_payments_editor_coordinator.h", | 7 "sc_payments_editor_coordinator.h", |
| 8 "sc_payments_editor_coordinator.mm", | 8 "sc_payments_editor_coordinator.mm", |
| 9 "sc_payments_picker_coordinator.h", |
| 10 "sc_payments_picker_coordinator.mm", |
| 9 ] | 11 ] |
| 10 deps = [ | 12 deps = [ |
| 11 "//base", | 13 "//base", |
| 12 "//ios/chrome/browser/payments:payments_ui", | 14 "//ios/chrome/browser/payments:payments_ui", |
| 13 "//ios/chrome/browser/payments/cells", | 15 "//ios/chrome/browser/payments/cells", |
| 14 "//ios/chrome/browser/ui/collection_view/cells", | 16 "//ios/chrome/browser/ui/collection_view/cells", |
| 15 "//ios/chrome/browser/ui/settings/cells", | 17 "//ios/chrome/browser/ui/settings/cells", |
| 16 "//ios/showcase/common", | 18 "//ios/showcase/common", |
| 17 ] | 19 ] |
| 18 libs = [ "UIKit.framework" ] | 20 libs = [ "UIKit.framework" ] |
| 19 configs += [ "//build/config/compiler:enable_arc" ] | 21 configs += [ "//build/config/compiler:enable_arc" ] |
| 20 } | 22 } |
| 21 | 23 |
| 22 source_set("eg_tests") { | 24 source_set("eg_tests") { |
| 23 testonly = true | 25 testonly = true |
| 24 sources = [ | 26 sources = [ |
| 25 "sc_payments_editor_egtest.mm", | 27 "sc_payments_editor_egtest.mm", |
| 28 "sc_payments_picker_egtest.mm", |
| 26 ] | 29 ] |
| 27 deps = [ | 30 deps = [ |
| 28 "//base", | 31 "//base", |
| 29 "//components/strings", | 32 "//components/strings", |
| 30 "//ios/chrome/browser/payments:payments_ui", | 33 "//ios/chrome/browser/payments:payments_ui", |
| 31 "//ios/chrome/browser/ui/settings", | 34 "//ios/chrome/browser/ui/settings", |
| 32 "//ios/showcase/test", | 35 "//ios/showcase/test", |
| 33 "//ios/third_party/earl_grey", | 36 "//ios/third_party/earl_grey", |
| 34 "//ui/base", | 37 "//ui/base", |
| 35 ] | 38 ] |
| 36 configs += [ "//build/config/compiler:enable_arc" ] | 39 configs += [ "//build/config/compiler:enable_arc" ] |
| 37 } | 40 } |
| OLD | NEW |