# Copyright 2019 The Chromium Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
source_set("cells") {
sources = [
"autofill_address_profile_record_type.h",
"autofill_card_item.h",
"autofill_card_item.mm",
"autofill_profile_item.h",
"autofill_profile_item.mm",
]
deps = [
"//base",
"//base:i18n",
"//ios/chrome/app/strings",
"//ios/chrome/browser/autofill/ui_bundled:ui_type",
"//ios/chrome/browser/shared/ui/table_view:styler",
"//ios/chrome/browser/shared/ui/table_view/cells",
"//ios/chrome/browser/shared/ui/util",
"//ios/chrome/common/ui/colors",
"//ios/chrome/common/ui/table_view:cells_constants",
"//ui/base",
]
}
source_set("unit_tests") {
testonly = true
sources = [ "autofill_profile_item_unittest.mm" ]
deps = [
":cells",
"//base",
"//base/test:test_support",
"//ios/chrome/browser/shared/ui/table_view:styler",
"//testing/gtest",
"//third_party/ocmock:ocmock",
]
}