Chromium Code Reviews| Index: ios/chrome/browser/payments/BUILD.gn |
| diff --git a/ios/chrome/browser/payments/BUILD.gn b/ios/chrome/browser/payments/BUILD.gn |
| index 07d0054f4111d73ab030a41e5c4fce33f3ce7caa..bffb2746303f47d9ca90f631e9f8d0fdd2ba249d 100644 |
| --- a/ios/chrome/browser/payments/BUILD.gn |
| +++ b/ios/chrome/browser/payments/BUILD.gn |
| @@ -54,6 +54,7 @@ source_set("payments") { |
| ] |
| deps = [ |
| ":injected_js", |
| + ":payments_ui", |
| "//base", |
| "//components/autofill/core/browser", |
| "//components/autofill/ios/browser", |
| @@ -80,6 +81,31 @@ source_set("payments") { |
| libs = [ "UIKit.framework" ] |
| } |
| +source_set("payments_ui") { |
| + configs += [ "//build/config/compiler:enable_arc" ] |
| + sources = [ |
| + "payment_request_edit_view_controller.h", |
| + "payment_request_edit_view_controller.mm", |
| + ] |
| + deps = [ |
| + "//base", |
| + "//components/autofill/core/browser", |
|
lpromero
2017/03/16 16:25:50
Is this used for anything other than autofill::Ser
Moe
2017/03/21 04:22:14
After the latest changes, this only exists because
|
| + "//components/strings", |
| + "//ios/chrome/app/theme", |
| + "//ios/chrome/browser/payments/cells", |
| + "//ios/chrome/browser/ui", |
| + "//ios/chrome/browser/ui/collection_view", |
| + "//ios/chrome/browser/ui/colors", |
| + "//ios/chrome/browser/ui/settings", |
| + "//ios/chrome/browser/ui/settings/cells", |
| + "//ui/base", |
| + ] |
| + public_deps = [ |
| + "//ios/third_party/material_components_ios", |
| + ] |
| + libs = [ "UIKit.framework" ] |
| +} |
| + |
| source_set("unit_tests") { |
| configs += [ "//build/config/compiler:enable_arc" ] |
| testonly = true |