Chromium Code Reviews| Index: ios/clean/chrome/browser/ui/ntp/BUILD.gn |
| diff --git a/ios/clean/chrome/browser/ui/ntp/BUILD.gn b/ios/clean/chrome/browser/ui/ntp/BUILD.gn |
| index 363e9659226490453ab39cdc4f3e06ad49bac1d9..2ee6f6c04c59851787cf026f68ece2c76e8e413e 100644 |
| --- a/ios/clean/chrome/browser/ui/ntp/BUILD.gn |
| +++ b/ios/clean/chrome/browser/ui/ntp/BUILD.gn |
| @@ -6,19 +6,38 @@ source_set("ntp") { |
| sources = [ |
| "new_tab_page_coordinator.h", |
| "new_tab_page_coordinator.mm", |
| + "new_tab_page_home_coordinator.h", |
| + "new_tab_page_home_coordinator.mm", |
| + "new_tab_page_home_mediator.h", |
| + "new_tab_page_home_mediator.mm", |
| + "new_tab_page_mediator.h", |
| + "new_tab_page_mediator.mm", |
| ] |
| configs += [ "//build/config/compiler:enable_arc" ] |
| deps = [ |
| ":ntp_ui", |
| + "//ios/chrome/app/strings:ios_strings_grit", |
| + "//ios/chrome/browser/ui:ui", |
|
lpromero
2017/04/06 13:01:04
Idem for not repeating the target when it can be i
justincohen
2017/04/06 18:25:09
Done.
|
| + "//ios/chrome/browser/ui/ntp:ntp_internal", |
| + "//ios/chrome/browser/ui/toolbar:toolbar", |
| + "//ios/clean/chrome/browser/ui/bookmarks/", |
| + "//ios/clean/chrome/browser/ui/commands:commands", |
| + "//ios/clean/chrome/browser/ui/open_tabs/", |
|
lpromero
2017/04/06 13:01:04
Remove the trailing slash.
justincohen
2017/04/06 18:25:09
Done.
|
| "//ios/shared/chrome/browser/coordinator_context", |
| + "//ios/shared/chrome/browser/ui/browser_list:browser_list", |
| + "//ios/shared/chrome/browser/ui/commands:commands", |
| "//ios/shared/chrome/browser/ui/coordinators", |
| + "//ios/web:web_arc", |
| + "//ui/base:base", |
| + "//url:url", |
| ] |
| } |
| source_set("ntp_ui") { |
| sources = [ |
| + "new_tab_page_consumer.h", |
| "new_tab_page_view_controller.h", |
| "new_tab_page_view_controller.mm", |
| ] |
| @@ -29,8 +48,10 @@ source_set("ntp_ui") { |
| "//base", |
| "//components/strings:components_strings_grit", |
| "//ios/chrome/app/strings:ios_strings_grit", |
| + "//ios/chrome/browser/ui:ui", |
| "//ios/chrome/browser/ui/ntp:ntp_internal", |
| "//ios/clean/chrome/browser/ui", |
| + "//ios/clean/chrome/browser/ui/commands:commands", |
| "//ui/base:base", |
| ] |
| } |