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_commands.h", | 4 "suggestions_commands.h", |
| 5 "suggestions_data_source.h", |
| 6 "suggestions_data_source.mm", |
| 7 "suggestions_item.h", |
| 8 "suggestions_item.mm", |
5 "suggestions_item_actions.h", | 9 "suggestions_item_actions.h", |
6 "suggestions_view_controller.h", | 10 "suggestions_view_controller.h", |
7 "suggestions_view_controller.mm", | 11 "suggestions_view_controller.mm", |
8 ] | 12 ] |
9 deps = [ | 13 deps = [ |
10 "//base", | 14 "//base", |
11 "//ios/chrome/browser/ui", | 15 "//ios/chrome/browser/ui", |
12 "//ios/chrome/browser/ui/collection_view", | 16 "//ios/chrome/browser/ui/collection_view", |
13 "//ios/third_party/material_roboto_font_loader_ios", | 17 "//ios/third_party/material_roboto_font_loader_ios", |
14 ] | 18 ] |
15 public_deps = [ | 19 public_deps = [ |
16 "//ios/third_party/material_components_ios", | 20 "//ios/third_party/material_components_ios", |
17 ] | 21 ] |
18 } | 22 } |
OLD | NEW |