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", | 9 "sc_payments_picker_coordinator.h", |
10 "sc_payments_picker_coordinator.mm", | 10 "sc_payments_picker_coordinator.mm", |
| 11 "sc_payments_selector_coordinator.h", |
| 12 "sc_payments_selector_coordinator.mm", |
11 ] | 13 ] |
12 deps = [ | 14 deps = [ |
13 "//base", | 15 "//base", |
14 "//ios/chrome/browser/payments:payments_ui", | 16 "//ios/chrome/browser/payments:payments_ui", |
15 "//ios/chrome/browser/payments/cells", | 17 "//ios/chrome/browser/payments/cells", |
16 "//ios/chrome/browser/ui/autofill", | 18 "//ios/chrome/browser/ui/autofill", |
17 "//ios/chrome/browser/ui/autofill:autofill_ui", | 19 "//ios/chrome/browser/ui/autofill:autofill_ui", |
18 "//ios/chrome/browser/ui/autofill/cells", | 20 "//ios/chrome/browser/ui/autofill/cells", |
19 "//ios/chrome/browser/ui/collection_view/cells", | 21 "//ios/chrome/browser/ui/collection_view/cells", |
20 "//ios/chrome/browser/ui/settings/cells", | 22 "//ios/chrome/browser/ui/settings/cells", |
21 "//ios/showcase/common", | 23 "//ios/showcase/common", |
22 ] | 24 ] |
23 libs = [ "UIKit.framework" ] | 25 libs = [ "UIKit.framework" ] |
24 configs += [ "//build/config/compiler:enable_arc" ] | 26 configs += [ "//build/config/compiler:enable_arc" ] |
25 } | 27 } |
26 | 28 |
27 source_set("eg_tests") { | 29 source_set("eg_tests") { |
28 testonly = true | 30 testonly = true |
29 sources = [ | 31 sources = [ |
30 "sc_payments_editor_egtest.mm", | 32 "sc_payments_editor_egtest.mm", |
31 "sc_payments_picker_egtest.mm", | 33 "sc_payments_picker_egtest.mm", |
| 34 "sc_payments_selector_egtest.mm", |
32 ] | 35 ] |
33 deps = [ | 36 deps = [ |
34 "//base", | 37 "//base", |
35 "//components/strings", | 38 "//components/strings", |
36 "//ios/chrome/browser/payments:payments_ui", | 39 "//ios/chrome/browser/payments:payments_ui", |
37 "//ios/chrome/browser/ui", | 40 "//ios/chrome/browser/ui", |
38 "//ios/chrome/browser/ui/autofill:autofill_ui", | 41 "//ios/chrome/browser/ui/autofill:autofill_ui", |
39 "//ios/chrome/browser/ui/settings", | 42 "//ios/chrome/browser/ui/settings", |
| 43 "//ios/chrome/test/earl_grey:test_support", |
40 "//ios/showcase/test", | 44 "//ios/showcase/test", |
41 "//ios/third_party/earl_grey", | 45 "//ios/third_party/earl_grey", |
42 "//ui/base", | 46 "//ui/base", |
43 ] | 47 ] |
44 configs += [ "//build/config/compiler:enable_arc" ] | 48 configs += [ "//build/config/compiler:enable_arc" ] |
45 } | 49 } |
OLD | NEW |