| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 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 | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 source_set("content_suggestions") { | 5 source_set("content_suggestions") { |
| 6 configs += [ "//build/config/compiler:enable_arc" ] | 6 configs += [ "//build/config/compiler:enable_arc" ] |
| 7 sources = [ | 7 sources = [ |
| 8 "content_suggestion.h", | 8 "content_suggestion.h", |
| 9 "content_suggestion.mm", | 9 "content_suggestion.mm", |
| 10 "content_suggestions_article_item.h", | 10 "content_suggestions_article_item.h", |
| (...skipping 18 matching lines...) Expand all Loading... |
| 29 "content_suggestions_view_controller.h", | 29 "content_suggestions_view_controller.h", |
| 30 "content_suggestions_view_controller.mm", | 30 "content_suggestions_view_controller.mm", |
| 31 "expandable_item.h", | 31 "expandable_item.h", |
| 32 ] | 32 ] |
| 33 deps = [ | 33 deps = [ |
| 34 "//base", | 34 "//base", |
| 35 "//ios/chrome/browser/ui", | 35 "//ios/chrome/browser/ui", |
| 36 "//ios/chrome/browser/ui/collection_view", | 36 "//ios/chrome/browser/ui/collection_view", |
| 37 "//ios/third_party/material_roboto_font_loader_ios", | 37 "//ios/third_party/material_roboto_font_loader_ios", |
| 38 "//ui/base", | 38 "//ui/base", |
| 39 "//url", |
| 39 ] | 40 ] |
| 40 public_deps = [ | 41 public_deps = [ |
| 41 "//ios/third_party/material_components_ios", | 42 "//ios/third_party/material_components_ios", |
| 42 ] | 43 ] |
| 43 } | 44 } |
| 44 | 45 |
| 45 source_set("unit_tests") { | 46 source_set("unit_tests") { |
| 46 configs += [ "//build/config/compiler:enable_arc" ] | 47 configs += [ "//build/config/compiler:enable_arc" ] |
| 47 testonly = true | 48 testonly = true |
| 48 sources = [ | 49 sources = [ |
| 49 "content_suggestions_article_item_unittest.mm", | 50 "content_suggestions_article_item_unittest.mm", |
| 50 "content_suggestions_expandable_item_unittest.mm", | 51 "content_suggestions_expandable_item_unittest.mm", |
| 51 "content_suggestions_favicon_item_unittest.mm", | 52 "content_suggestions_favicon_item_unittest.mm", |
| 52 "content_suggestions_item_unittest.mm", | 53 "content_suggestions_item_unittest.mm", |
| 53 "content_suggestions_stack_item_unittest.mm", | 54 "content_suggestions_stack_item_unittest.mm", |
| 54 ] | 55 ] |
| 55 deps = [ | 56 deps = [ |
| 56 ":content_suggestions", | 57 ":content_suggestions", |
| 57 "//base", | 58 "//base", |
| 58 "//ios/chrome/browser/ui/collection_view", | 59 "//ios/chrome/browser/ui/collection_view", |
| 59 "//testing/gtest", | 60 "//testing/gtest", |
| 60 "//third_party/ocmock", | 61 "//third_party/ocmock", |
| 62 "//url", |
| 61 ] | 63 ] |
| 62 } | 64 } |
| OLD | NEW |