| 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("cells") { | 5 source_set("cells") { |
| 6 sources = [ | 6 sources = [ |
| 7 "account_control_item.h", | 7 "account_control_item.h", |
| 8 "account_control_item.mm", | 8 "account_control_item.mm", |
| 9 "account_signin_item.h", | 9 "account_signin_item.h", |
| 10 "account_signin_item.mm", | 10 "account_signin_item.mm", |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 "encryption_item.h", | 21 "encryption_item.h", |
| 22 "encryption_item.mm", | 22 "encryption_item.mm", |
| 23 "import_data_multiline_detail_cell.h", | 23 "import_data_multiline_detail_cell.h", |
| 24 "import_data_multiline_detail_cell.mm", | 24 "import_data_multiline_detail_cell.mm", |
| 25 "native_app_item.h", | 25 "native_app_item.h", |
| 26 "native_app_item.mm", | 26 "native_app_item.mm", |
| 27 "passphrase_error_item.h", | 27 "passphrase_error_item.h", |
| 28 "passphrase_error_item.mm", | 28 "passphrase_error_item.mm", |
| 29 "password_details_item.h", | 29 "password_details_item.h", |
| 30 "password_details_item.mm", | 30 "password_details_item.mm", |
| 31 "signin_promo_item.h", |
| 32 "signin_promo_item.mm", |
| 31 "sync_switch_item.h", | 33 "sync_switch_item.h", |
| 32 "sync_switch_item.mm", | 34 "sync_switch_item.mm", |
| 33 "text_and_error_item.h", | 35 "text_and_error_item.h", |
| 34 "text_and_error_item.mm", | 36 "text_and_error_item.mm", |
| 35 "version_item.h", | 37 "version_item.h", |
| 36 "version_item.mm", | 38 "version_item.mm", |
| 37 ] | 39 ] |
| 38 | 40 |
| 39 deps = [ | 41 deps = [ |
| 40 "//components/autofill/core/browser", | 42 "//components/autofill/core/browser", |
| (...skipping 18 matching lines...) Expand all Loading... |
| 59 "autofill_data_item_unittest.mm", | 61 "autofill_data_item_unittest.mm", |
| 60 "autofill_edit_item_unittest.mm", | 62 "autofill_edit_item_unittest.mm", |
| 61 "byo_textfield_item_unittest.mm", | 63 "byo_textfield_item_unittest.mm", |
| 62 "card_multiline_item_unittest.mm", | 64 "card_multiline_item_unittest.mm", |
| 63 "copied_to_chrome_item_unittest.mm", | 65 "copied_to_chrome_item_unittest.mm", |
| 64 "encryption_item_unittest.mm", | 66 "encryption_item_unittest.mm", |
| 65 "import_data_multiline_detail_cell_unittest.mm", | 67 "import_data_multiline_detail_cell_unittest.mm", |
| 66 "native_app_item_unittest.mm", | 68 "native_app_item_unittest.mm", |
| 67 "passphrase_error_item_unittest.mm", | 69 "passphrase_error_item_unittest.mm", |
| 68 "password_details_item_unittest.mm", | 70 "password_details_item_unittest.mm", |
| 71 "signin_promo_item_unittest.mm", |
| 69 "sync_switch_item_unittest.mm", | 72 "sync_switch_item_unittest.mm", |
| 70 "text_and_error_item_unittest.mm", | 73 "text_and_error_item_unittest.mm", |
| 71 "version_item_unittest.mm", | 74 "version_item_unittest.mm", |
| 72 ] | 75 ] |
| 73 | 76 |
| 74 deps = [ | 77 deps = [ |
| 75 ":cells", | 78 ":cells", |
| 76 "//components/strings", | 79 "//components/strings", |
| 77 "//ios/chrome/app/strings", | 80 "//ios/chrome/app/strings", |
| 78 "//ios/chrome/browser/ui/collection_view/cells", | 81 "//ios/chrome/browser/ui/collection_view/cells", |
| 79 "//ios/chrome/browser/ui/collection_view/cells:test_support", | 82 "//ios/chrome/browser/ui/collection_view/cells:test_support", |
| 80 "//ios/chrome/browser/ui/colors", | 83 "//ios/chrome/browser/ui/colors", |
| 81 "//ios/third_party/material_components_ios", | 84 "//ios/third_party/material_components_ios", |
| 82 "//testing/gtest", | 85 "//testing/gtest", |
| 83 "//ui/base", | 86 "//ui/base", |
| 84 ] | 87 ] |
| 85 | 88 |
| 86 configs += [ "//build/config/compiler:enable_arc" ] | 89 configs += [ "//build/config/compiler:enable_arc" ] |
| 87 } | 90 } |
| OLD | NEW |