| 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("collection_view") { | |
| 6 sources = [ | |
| 7 "collection_view_controller.h", | |
| 8 "collection_view_controller.mm", | |
| 9 "collection_view_model.h", | |
| 10 "collection_view_model.mm", | |
| 11 ] | |
| 12 deps = [ | |
| 13 "//base", | |
| 14 "//ios/chrome/browser/ui/material_components", | |
| 15 ] | |
| 16 public_deps = [ | |
| 17 "//ios/chrome/browser/ui/collection_view/cells", | |
| 18 "//ios/third_party/material_components_ios", | |
| 19 ] | |
| 20 } | |
| 21 | |
| 22 source_set("test_support") { | |
| 23 testonly = true | |
| 24 sources = [ | |
| 25 "collection_view_controller_test.h", | |
| 26 "collection_view_controller_test.mm", | |
| 27 ] | |
| 28 deps = [ | |
| 29 ":collection_view", | |
| 30 "//base", | |
| 31 "//ios/chrome/browser/ui/collection_view/cells", | |
| 32 "//ios/chrome/test:test_support", | |
| 33 "//ios/third_party/material_components_ios", | |
| 34 "//testing/gtest", | |
| 35 "//ui/base", | |
| 36 ] | |
| 37 } | |
| 38 | |
| 39 source_set("unit_tests") { | |
| 40 testonly = true | |
| 41 sources = [ | |
| 42 "collection_view_controller_unittest.mm", | |
| 43 "collection_view_model_unittest.mm", | |
| 44 ] | |
| 45 deps = [ | |
| 46 ":collection_view", | |
| 47 "//base", | |
| 48 "//ios/chrome/browser/ui/collection_view/cells", | |
| 49 "//ios/chrome/test:test_support", | |
| 50 "//ios/chrome/test/base", | |
| 51 "//ios/third_party/material_components_ios", | |
| 52 "//testing/gtest", | |
| 53 ] | |
| 54 } | |
| OLD | NEW |