# Copyright 2018 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("list_model") {
sources = [
"list_item+Controller.h",
"list_item.h",
"list_item.mm",
"list_model.h",
"list_model.mm",
]
deps = [ "//base" ]
}
source_set("unit_tests") {
testonly = true
sources = [
"list_item_unittest.mm",
"list_model_collapse_unittest.mm",
"list_model_unittest.mm",
]
deps = [
":list_model",
"//base",
"//ios/chrome/test:test_support",
"//testing/gtest",
]
}