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..5ea2d52f3b7bed8953bc480c9fb29364e399b85c |
--- /dev/null |
+++ b/ios/chrome/browser/ui/suggestions/BUILD.gn |
@@ -0,0 +1,18 @@ |
+source_set("suggestions") { |
lpromero
2017/01/10 15:51:27
This file is missing the comment header. You shoul
gambard
2017/01/10 16:56:35
Done.
|
+ configs += [ "//build/config/compiler:enable_arc" ] |
+ sources = [ |
+ "suggestions_commands.h", |
+ "suggestions_item_actions.h", |
+ "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", |
+ ] |
+} |