OLD | NEW |
1 source_set("suggestions") { | 1 source_set("suggestions") { |
2 configs += [ "//build/config/compiler:enable_arc" ] | 2 configs += [ "//build/config/compiler:enable_arc" ] |
3 sources = [ | 3 sources = [ |
| 4 "suggestions_article_item.h", |
| 5 "suggestions_article_item.mm", |
4 "suggestions_commands.h", | 6 "suggestions_commands.h", |
5 "suggestions_data_source.h", | 7 "suggestions_data_source.h", |
6 "suggestions_data_source.mm", | 8 "suggestions_data_source.mm", |
7 "suggestions_item.h", | 9 "suggestions_item.h", |
8 "suggestions_item.mm", | 10 "suggestions_item.mm", |
9 "suggestions_item_actions.h", | 11 "suggestions_item_actions.h", |
10 "suggestions_view_controller.h", | 12 "suggestions_view_controller.h", |
11 "suggestions_view_controller.mm", | 13 "suggestions_view_controller.mm", |
12 ] | 14 ] |
13 deps = [ | 15 deps = [ |
14 "//base", | 16 "//base", |
15 "//ios/chrome/browser/ui", | 17 "//ios/chrome/browser/ui", |
16 "//ios/chrome/browser/ui/collection_view", | 18 "//ios/chrome/browser/ui/collection_view", |
17 "//ios/third_party/material_roboto_font_loader_ios", | 19 "//ios/third_party/material_roboto_font_loader_ios", |
18 ] | 20 ] |
19 public_deps = [ | 21 public_deps = [ |
20 "//ios/third_party/material_components_ios", | 22 "//ios/third_party/material_components_ios", |
21 ] | 23 ] |
22 } | 24 } |
OLD | NEW |