| 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 "address_edit_coordinator.h", | 10 "address_edit_coordinator.h", |
| (...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 174 ] | 174 ] |
| 175 deps = [ | 175 deps = [ |
| 176 ":payments", | 176 ":payments", |
| 177 ":payments_ui", | 177 ":payments_ui", |
| 178 "//base", | 178 "//base", |
| 179 "//base/test:test_support", | 179 "//base/test:test_support", |
| 180 "//components/autofill/core/browser", | 180 "//components/autofill/core/browser", |
| 181 "//components/autofill/core/browser:test_support", | 181 "//components/autofill/core/browser:test_support", |
| 182 "//components/autofill/ios/browser", | 182 "//components/autofill/ios/browser", |
| 183 "//components/payments/core", | 183 "//components/payments/core", |
| 184 "//components/payments/core:test_support", |
| 184 "//components/prefs:prefs", | 185 "//components/prefs:prefs", |
| 185 "//components/signin/core/browser", | 186 "//components/signin/core/browser", |
| 186 "//components/strings", | 187 "//components/strings", |
| 187 "//ios/chrome/app/strings", | 188 "//ios/chrome/app/strings", |
| 188 "//ios/chrome/browser", | 189 "//ios/chrome/browser", |
| 189 "//ios/chrome/browser/autofill:autofill_internal", | 190 "//ios/chrome/browser/autofill:autofill_internal", |
| 190 "//ios/chrome/browser/browser_state:test_support", | 191 "//ios/chrome/browser/browser_state:test_support", |
| 191 "//ios/chrome/browser/infobars", | 192 "//ios/chrome/browser/infobars", |
| 192 "//ios/chrome/browser/payments", | 193 "//ios/chrome/browser/payments", |
| 193 "//ios/chrome/browser/payments:test_support", | 194 "//ios/chrome/browser/payments:test_support", |
| (...skipping 11 matching lines...) Expand all Loading... |
| 205 "//ios/testing:ocmock_support", | 206 "//ios/testing:ocmock_support", |
| 206 "//ios/third_party/material_components_ios", | 207 "//ios/third_party/material_components_ios", |
| 207 "//ios/web", | 208 "//ios/web", |
| 208 "//ios/web/public/test", | 209 "//ios/web/public/test", |
| 209 "//testing/gmock", | 210 "//testing/gmock", |
| 210 "//testing/gtest", | 211 "//testing/gtest", |
| 211 "//third_party/ocmock", | 212 "//third_party/ocmock", |
| 212 "//ui/base", | 213 "//ui/base", |
| 213 ] | 214 ] |
| 214 } | 215 } |
| OLD | NEW |