| 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", |
| (...skipping 18 matching lines...) Expand all Loading... |
| 29 source_set("eg_tests") { | 29 source_set("eg_tests") { |
| 30 testonly = true | 30 testonly = true |
| 31 sources = [ | 31 sources = [ |
| 32 "sc_payments_editor_egtest.mm", | 32 "sc_payments_editor_egtest.mm", |
| 33 "sc_payments_picker_egtest.mm", | 33 "sc_payments_picker_egtest.mm", |
| 34 "sc_payments_selector_egtest.mm", | 34 "sc_payments_selector_egtest.mm", |
| 35 ] | 35 ] |
| 36 deps = [ | 36 deps = [ |
| 37 "//base", | 37 "//base", |
| 38 "//components/strings", | 38 "//components/strings", |
| 39 "//ios/chrome/app/strings:ios_strings_grit", |
| 39 "//ios/chrome/browser/ui", | 40 "//ios/chrome/browser/ui", |
| 40 "//ios/chrome/browser/ui/autofill:autofill_ui", | 41 "//ios/chrome/browser/ui/autofill:autofill_ui", |
| 41 "//ios/chrome/browser/ui/payments:payments_ui", | 42 "//ios/chrome/browser/ui/payments:payments_ui", |
| 42 "//ios/chrome/browser/ui/settings", | 43 "//ios/chrome/browser/ui/settings", |
| 43 "//ios/chrome/test/earl_grey:test_support", | 44 "//ios/chrome/test/earl_grey:test_support", |
| 44 "//ios/showcase/test", | 45 "//ios/showcase/test", |
| 45 "//ios/third_party/earl_grey", | 46 "//ios/third_party/earl_grey", |
| 46 "//ui/base", | 47 "//ui/base", |
| 47 ] | 48 ] |
| 48 configs += [ "//build/config/compiler:enable_arc" ] | 49 configs += [ "//build/config/compiler:enable_arc" ] |
| 49 } | 50 } |
| OLD | NEW |