| 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_signin_item.h", | 7 "account_signin_item.h", |
| 8 "account_signin_item.mm", | 8 "account_signin_item.mm", |
| 9 "autofill_data_item.h", | 9 "autofill_data_item.h", |
| 10 "autofill_data_item.mm", | 10 "autofill_data_item.mm", |
| 11 "byo_textfield_item.h", | 11 "byo_textfield_item.h", |
| 12 "byo_textfield_item.mm", | 12 "byo_textfield_item.mm", |
| 13 "card_multiline_item.h", | 13 "card_multiline_item.h", |
| 14 "card_multiline_item.mm", | 14 "card_multiline_item.mm", |
| 15 "copied_to_chrome_item.h", | 15 "copied_to_chrome_item.h", |
| 16 "copied_to_chrome_item.mm", | 16 "copied_to_chrome_item.mm", |
| 17 "encryption_item.h", | 17 "encryption_item.h", |
| 18 "encryption_item.mm", | 18 "encryption_item.mm", |
| 19 "import_data_multiline_detail_cell.h", | 19 "import_data_multiline_detail_cell.h", |
| 20 "import_data_multiline_detail_cell.mm", | 20 "import_data_multiline_detail_cell.mm", |
| 21 "native_app_item.h", | |
| 22 "native_app_item.mm", | |
| 23 "passphrase_error_item.h", | 21 "passphrase_error_item.h", |
| 24 "passphrase_error_item.mm", | 22 "passphrase_error_item.mm", |
| 25 "password_details_item.h", | 23 "password_details_item.h", |
| 26 "password_details_item.mm", | 24 "password_details_item.mm", |
| 27 "sync_switch_item.h", | 25 "sync_switch_item.h", |
| 28 "sync_switch_item.mm", | 26 "sync_switch_item.mm", |
| 29 "text_and_error_item.h", | 27 "text_and_error_item.h", |
| 30 "text_and_error_item.mm", | 28 "text_and_error_item.mm", |
| 31 "version_item.h", | 29 "version_item.h", |
| 32 "version_item.mm", | 30 "version_item.mm", |
| (...skipping 16 matching lines...) Expand all Loading... |
| 49 source_set("unit_tests") { | 47 source_set("unit_tests") { |
| 50 testonly = true | 48 testonly = true |
| 51 sources = [ | 49 sources = [ |
| 52 "account_signin_item_unittest.mm", | 50 "account_signin_item_unittest.mm", |
| 53 "autofill_data_item_unittest.mm", | 51 "autofill_data_item_unittest.mm", |
| 54 "byo_textfield_item_unittest.mm", | 52 "byo_textfield_item_unittest.mm", |
| 55 "card_multiline_item_unittest.mm", | 53 "card_multiline_item_unittest.mm", |
| 56 "copied_to_chrome_item_unittest.mm", | 54 "copied_to_chrome_item_unittest.mm", |
| 57 "encryption_item_unittest.mm", | 55 "encryption_item_unittest.mm", |
| 58 "import_data_multiline_detail_cell_unittest.mm", | 56 "import_data_multiline_detail_cell_unittest.mm", |
| 59 "native_app_item_unittest.mm", | |
| 60 "passphrase_error_item_unittest.mm", | 57 "passphrase_error_item_unittest.mm", |
| 61 "password_details_item_unittest.mm", | 58 "password_details_item_unittest.mm", |
| 62 "sync_switch_item_unittest.mm", | 59 "sync_switch_item_unittest.mm", |
| 63 "text_and_error_item_unittest.mm", | 60 "text_and_error_item_unittest.mm", |
| 64 "version_item_unittest.mm", | 61 "version_item_unittest.mm", |
| 65 ] | 62 ] |
| 66 | 63 |
| 67 deps = [ | 64 deps = [ |
| 68 ":cells", | 65 ":cells", |
| 69 "//components/strings", | 66 "//components/strings", |
| 70 "//ios/chrome/app/strings", | 67 "//ios/chrome/app/strings", |
| 71 "//ios/chrome/browser/ui/collection_view/cells", | 68 "//ios/chrome/browser/ui/collection_view/cells", |
| 72 "//ios/chrome/browser/ui/collection_view/cells:test_support", | 69 "//ios/chrome/browser/ui/collection_view/cells:test_support", |
| 73 "//testing/gtest", | 70 "//testing/gtest", |
| 74 "//ui/base", | 71 "//ui/base", |
| 75 ] | 72 ] |
| 76 | 73 |
| 77 configs += [ "//build/config/compiler:enable_arc" ] | 74 configs += [ "//build/config/compiler:enable_arc" ] |
| 78 } | 75 } |
| OLD | NEW |