| 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 "bookmark_parent_folder_item.h", | |
| 8 "bookmark_parent_folder_item.mm", | |
| 9 "bookmark_text_field_item.h", | |
| 10 "bookmark_text_field_item.mm", | |
| 11 ] | |
| 12 | |
| 13 deps = [ | |
| 14 "//base", | |
| 15 "//ios/chrome/app/strings", | |
| 16 "//ios/chrome/browser/ui", | |
| 17 "//ios/chrome/browser/ui/collection_view/cells", | |
| 18 "//ios/chrome/browser/ui/icons", | |
| 19 "//ios/public/provider/chrome/browser", | |
| 20 "//ios/public/provider/chrome/browser/ui", | |
| 21 "//ios/third_party/material_components_ios", | |
| 22 "//ios/third_party/material_roboto_font_loader_ios", | |
| 23 "//ui/base", | |
| 24 ] | |
| 25 | |
| 26 configs += [ "//build/config/compiler:enable_arc" ] | |
| 27 } | |
| 28 | |
| 29 source_set("unit_tests") { | |
| 30 testonly = true | |
| 31 sources = [ | |
| 32 "bookmark_parent_folder_item_unittest.mm", | |
| 33 "bookmark_text_field_item_unittest.mm", | |
| 34 ] | |
| 35 | |
| 36 deps = [ | |
| 37 ":cells", | |
| 38 "//ios/chrome/browser/ui/collection_view/cells", | |
| 39 "//ios/third_party/material_components_ios", | |
| 40 "//testing/gtest", | |
| 41 "//third_party/ocmock", | |
| 42 ] | |
| 43 | |
| 44 configs += [ "//build/config/compiler:enable_arc" ] | |
| 45 } | |
| OLD | NEW |