| 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 "credit_card_edit_coordinator.h", | 10 "credit_card_edit_coordinator.h", |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 60 "//ios/chrome/browser/ui/autofill/cells", | 60 "//ios/chrome/browser/ui/autofill/cells", |
| 61 "//ios/chrome/browser/ui/collection_view", | 61 "//ios/chrome/browser/ui/collection_view", |
| 62 "//ios/chrome/browser/ui/collection_view/cells", | 62 "//ios/chrome/browser/ui/collection_view/cells", |
| 63 "//ios/chrome/browser/ui/colors", | 63 "//ios/chrome/browser/ui/colors", |
| 64 "//ios/chrome/browser/ui/commands", | 64 "//ios/chrome/browser/ui/commands", |
| 65 "//ios/chrome/browser/ui/icons", | 65 "//ios/chrome/browser/ui/icons", |
| 66 "//ios/chrome/browser/ui/payments/cells", | 66 "//ios/chrome/browser/ui/payments/cells", |
| 67 "//ios/third_party/material_components_ios", | 67 "//ios/third_party/material_components_ios", |
| 68 "//ios/third_party/material_roboto_font_loader_ios", | 68 "//ios/third_party/material_roboto_font_loader_ios", |
| 69 "//ios/web", | 69 "//ios/web", |
| 70 "//third_party/libaddressinput", |
| 70 "//ui/base", | 71 "//ui/base", |
| 71 ] | 72 ] |
| 72 libs = [ "UIKit.framework" ] | 73 libs = [ "UIKit.framework" ] |
| 73 } | 74 } |
| 74 | 75 |
| 75 source_set("payments_ui") { | 76 source_set("payments_ui") { |
| 76 configs += [ "//build/config/compiler:enable_arc" ] | 77 configs += [ "//build/config/compiler:enable_arc" ] |
| 77 sources = [ | 78 sources = [ |
| 78 "credit_card_edit_view_controller.h", | 79 "credit_card_edit_view_controller.h", |
| 79 "credit_card_edit_view_controller.mm", | 80 "credit_card_edit_view_controller.mm", |
| (...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 159 "//ios/chrome/test:test_support", | 160 "//ios/chrome/test:test_support", |
| 160 "//ios/testing:ocmock_support", | 161 "//ios/testing:ocmock_support", |
| 161 "//ios/third_party/material_components_ios", | 162 "//ios/third_party/material_components_ios", |
| 162 "//ios/web", | 163 "//ios/web", |
| 163 "//ios/web:test_support", | 164 "//ios/web:test_support", |
| 164 "//testing/gmock", | 165 "//testing/gmock", |
| 165 "//testing/gtest", | 166 "//testing/gtest", |
| 166 "//third_party/ocmock", | 167 "//third_party/ocmock", |
| 167 ] | 168 ] |
| 168 } | 169 } |
| OLD | NEW |