| 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 sources = [ | 7 sources = [ |
| 7 "autofill_client_ios.h", | 8 "autofill_client_ios.h", |
| 8 "autofill_client_ios.mm", | 9 "autofill_client_ios.mm", |
| 9 "autofill_save_card_infobar.mm", | 10 "autofill_save_card_infobar.mm", |
| 10 "card_unmask_prompt_view_bridge.h", | 11 "card_unmask_prompt_view_bridge.h", |
| 11 "card_unmask_prompt_view_bridge.mm", | 12 "card_unmask_prompt_view_bridge.mm", |
| 12 "storage_switch_tooltip.h", | 13 "storage_switch_tooltip.h", |
| 13 "storage_switch_tooltip.mm", | 14 "storage_switch_tooltip.mm", |
| 14 ] | 15 ] |
| 15 deps = [ | 16 deps = [ |
| (...skipping 18 matching lines...) Expand all Loading... |
| 34 "//ios/public/provider/chrome/browser", | 35 "//ios/public/provider/chrome/browser", |
| 35 "//ios/third_party/material_components_ios", | 36 "//ios/third_party/material_components_ios", |
| 36 "//ios/third_party/material_roboto_font_loader_ios", | 37 "//ios/third_party/material_roboto_font_loader_ios", |
| 37 "//ui/base", | 38 "//ui/base", |
| 38 ] | 39 ] |
| 39 public_deps = [ | 40 public_deps = [ |
| 40 "//ios/chrome/browser/ui/collection_view", | 41 "//ios/chrome/browser/ui/collection_view", |
| 41 ] | 42 ] |
| 42 libs = [ "UIKit.framework" ] | 43 libs = [ "UIKit.framework" ] |
| 43 } | 44 } |
| OLD | NEW |