Index: ios/chrome/browser/ui/suggestions/BUILD.gn |
diff --git a/ios/chrome/browser/ui/suggestions/BUILD.gn b/ios/chrome/browser/ui/suggestions/BUILD.gn |
new file mode 100644 |
index 0000000000000000000000000000000000000000..ee6f6497ef13ae52a55e50fbb7a16b02f2f045c0 |
--- /dev/null |
+++ b/ios/chrome/browser/ui/suggestions/BUILD.gn |
@@ -0,0 +1,24 @@ |
+source_set("suggestions") { |
+ configs += [ "//build/config/compiler:enable_arc" ] |
+ sources = [ |
+ "suggestions_article_item.h", |
+ "suggestions_article_item.mm", |
+ "suggestions_data_source.h", |
+ "suggestions_data_source.mm", |
+ "suggestions_expandable_item.h", |
+ "suggestions_expandable_item.mm", |
+ "suggestions_item.h", |
+ "suggestions_item.mm", |
+ "suggestions_view_controller.h", |
+ "suggestions_view_controller.mm", |
+ ] |
+ deps = [ |
+ "//base", |
+ "//ios/chrome/browser/ui", |
+ "//ios/chrome/browser/ui/collection_view", |
+ "//ios/third_party/material_roboto_font_loader_ios", |
+ ] |
+ public_deps = [ |
+ "//ios/third_party/material_components_ios", |
+ ] |
+} |