| 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_suggestion_identifier.h", | 10 "content_suggestion_identifier.h", |
| (...skipping 21 matching lines...) Expand all Loading... |
| 32 "content_suggestions_text_item.mm", | 32 "content_suggestions_text_item.mm", |
| 33 "content_suggestions_text_item_actions.h", | 33 "content_suggestions_text_item_actions.h", |
| 34 "content_suggestions_view_controller.h", | 34 "content_suggestions_view_controller.h", |
| 35 "content_suggestions_view_controller.mm", | 35 "content_suggestions_view_controller.mm", |
| 36 "expandable_item.h", | 36 "expandable_item.h", |
| 37 ] | 37 ] |
| 38 deps = [ | 38 deps = [ |
| 39 "//base", | 39 "//base", |
| 40 "//ios/chrome/browser/ui", | 40 "//ios/chrome/browser/ui", |
| 41 "//ios/chrome/browser/ui/collection_view", | 41 "//ios/chrome/browser/ui/collection_view", |
| 42 "//ios/chrome/browser/ui/colors", |
| 42 "//ios/third_party/material_roboto_font_loader_ios", | 43 "//ios/third_party/material_roboto_font_loader_ios", |
| 43 "//ui/base", | 44 "//ui/base", |
| 44 "//url", | 45 "//url", |
| 45 ] | 46 ] |
| 46 public_deps = [ | 47 public_deps = [ |
| 47 "//ios/third_party/material_components_ios", | 48 "//ios/third_party/material_components_ios", |
| 48 ] | 49 ] |
| 49 } | 50 } |
| 50 | 51 |
| 51 source_set("unit_tests") { | 52 source_set("unit_tests") { |
| 52 configs += [ "//build/config/compiler:enable_arc" ] | 53 configs += [ "//build/config/compiler:enable_arc" ] |
| 53 testonly = true | 54 testonly = true |
| 54 sources = [ | 55 sources = [ |
| 55 "content_suggestion_identifier_unittest.mm", | 56 "content_suggestion_identifier_unittest.mm", |
| 56 "content_suggestions_article_item_unittest.mm", | 57 "content_suggestions_article_item_unittest.mm", |
| 57 "content_suggestions_expandable_item_unittest.mm", | 58 "content_suggestions_expandable_item_unittest.mm", |
| 58 "content_suggestions_favicon_item_unittest.mm", | 59 "content_suggestions_favicon_item_unittest.mm", |
| 59 "content_suggestions_stack_item_unittest.mm", | 60 "content_suggestions_stack_item_unittest.mm", |
| 60 "content_suggestions_text_item_unittest.mm", | 61 "content_suggestions_text_item_unittest.mm", |
| 61 ] | 62 ] |
| 62 deps = [ | 63 deps = [ |
| 63 ":content_suggestions", | 64 ":content_suggestions", |
| 64 "//base", | 65 "//base", |
| 65 "//ios/chrome/browser/ui/collection_view", | 66 "//ios/chrome/browser/ui/collection_view", |
| 66 "//testing/gtest", | 67 "//testing/gtest", |
| 67 "//third_party/ocmock", | 68 "//third_party/ocmock", |
| 68 "//url", | 69 "//url", |
| 69 ] | 70 ] |
| 70 } | 71 } |
| OLD | NEW |