| 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 source_set("autofill") { | 5 source_set("autofill") { |
| 6 configs += [ "//build/config/compiler:enable_arc" ] | 6 configs += [ "//build/config/compiler:enable_arc" ] |
| 7 sources = [ | 7 sources = [ |
| 8 "autofill_client_ios.h", | 8 "autofill_client_ios.h", |
| 9 "autofill_client_ios.mm", | 9 "autofill_client_ios.mm", |
| 10 "autofill_save_card_infobar.mm", | 10 "autofill_save_card_infobar.mm", |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 "//ios/chrome/browser/autofill", | 28 "//ios/chrome/browser/autofill", |
| 29 "//ios/chrome/browser/browser_state", | 29 "//ios/chrome/browser/browser_state", |
| 30 "//ios/chrome/browser/infobars", | 30 "//ios/chrome/browser/infobars", |
| 31 "//ios/chrome/browser/ui", | 31 "//ios/chrome/browser/ui", |
| 32 "//ios/chrome/browser/ui/autofill/cells", | 32 "//ios/chrome/browser/ui/autofill/cells", |
| 33 "//ios/chrome/browser/ui/collection_view/cells", | 33 "//ios/chrome/browser/ui/collection_view/cells", |
| 34 "//ios/chrome/browser/ui/colors", | 34 "//ios/chrome/browser/ui/colors", |
| 35 "//ios/public/provider/chrome/browser", | 35 "//ios/public/provider/chrome/browser", |
| 36 "//ios/third_party/material_components_ios", | 36 "//ios/third_party/material_components_ios", |
| 37 "//ios/third_party/material_roboto_font_loader_ios", | 37 "//ios/third_party/material_roboto_font_loader_ios", |
| 38 "//ios/web", |
| 38 "//ui/base", | 39 "//ui/base", |
| 39 ] | 40 ] |
| 40 public_deps = [ | 41 public_deps = [ |
| 41 "//ios/chrome/browser/ui/collection_view", | 42 "//ios/chrome/browser/ui/collection_view", |
| 42 ] | 43 ] |
| 43 libs = [ "UIKit.framework" ] | 44 libs = [ "UIKit.framework" ] |
| 44 } | 45 } |
| OLD | NEW |