| OLD | NEW |
| (Empty) |
| 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 | |
| 3 # found in the LICENSE file. | |
| 4 | |
| 5 source_set("cells") { | |
| 6 sources = [ | |
| 7 "cvc_item.h", | |
| 8 "cvc_item.mm", | |
| 9 "status_item.h", | |
| 10 "status_item.mm", | |
| 11 "storage_switch_item.h", | |
| 12 "storage_switch_item.mm", | |
| 13 ] | |
| 14 | |
| 15 deps = [ | |
| 16 "//components/resources", | |
| 17 "//components/strings", | |
| 18 "//ios/chrome/app/strings", | |
| 19 "//ios/chrome/app/theme", | |
| 20 "//ios/chrome/browser/ui/collection_view/cells", | |
| 21 "//ios/chrome/browser/ui/colors", | |
| 22 "//ios/public/provider/chrome/browser", | |
| 23 "//ios/public/provider/chrome/browser/ui", | |
| 24 "//ios/third_party/material_components_ios", | |
| 25 "//ios/third_party/material_roboto_font_loader_ios", | |
| 26 "//ui/base", | |
| 27 ] | |
| 28 | |
| 29 configs += [ "//build/config/compiler:enable_arc" ] | |
| 30 } | |
| 31 | |
| 32 source_set("unit_tests") { | |
| 33 testonly = true | |
| 34 sources = [ | |
| 35 "cvc_item_unittest.mm", | |
| 36 "status_item_unittest.mm", | |
| 37 "storage_switch_item_unittest.mm", | |
| 38 ] | |
| 39 | |
| 40 deps = [ | |
| 41 ":cells", | |
| 42 "//base", | |
| 43 "//components/resources", | |
| 44 "//ios/chrome/browser/ui/collection_view/cells", | |
| 45 "//ios/third_party/material_components_ios", | |
| 46 "//testing/gtest", | |
| 47 ] | |
| 48 | |
| 49 configs += [ "//build/config/compiler:enable_arc" ] | |
| 50 } | |
| OLD | NEW |