| OLD | NEW |
| 1 # Copyright 2017 The Chromium Authors. All rights reserved. | 1 # Copyright 2017 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 source_set("ntp") { | 5 source_set("ntp") { |
| 6 sources = [ | 6 sources = [ |
| 7 "new_tab_page_coordinator.h", | 7 "new_tab_page_coordinator.h", |
| 8 "new_tab_page_coordinator.mm", | 8 "new_tab_page_coordinator.mm", |
| 9 ] | 9 ] |
| 10 | 10 |
| 11 configs += [ "//build/config/compiler:enable_arc" ] | 11 configs += [ "//build/config/compiler:enable_arc" ] |
| 12 | 12 |
| 13 deps = [ | 13 deps = [ |
| 14 ":ntp_ui", | 14 ":ntp_ui", |
| 15 "//ios/shared/chrome/browser/coordinator_context", | |
| 16 "//ios/shared/chrome/browser/ui/coordinators", | 15 "//ios/shared/chrome/browser/ui/coordinators", |
| 17 ] | 16 ] |
| 18 } | 17 } |
| 19 | 18 |
| 20 source_set("ntp_ui") { | 19 source_set("ntp_ui") { |
| 21 sources = [ | 20 sources = [ |
| 22 "new_tab_page_view_controller.h", | 21 "new_tab_page_view_controller.h", |
| 23 "new_tab_page_view_controller.mm", | 22 "new_tab_page_view_controller.mm", |
| 24 ] | 23 ] |
| 25 | 24 |
| 26 configs += [ "//build/config/compiler:enable_arc" ] | 25 configs += [ "//build/config/compiler:enable_arc" ] |
| 27 | 26 |
| 28 deps = [ | 27 deps = [ |
| 29 "//base", | 28 "//base", |
| 30 "//components/strings:components_strings_grit", | 29 "//components/strings:components_strings_grit", |
| 31 "//ios/chrome/app/strings:ios_strings_grit", | 30 "//ios/chrome/app/strings:ios_strings_grit", |
| 32 "//ios/chrome/browser/ui/ntp:ntp_internal", | 31 "//ios/chrome/browser/ui/ntp:ntp_internal", |
| 33 "//ios/clean/chrome/browser/ui", | 32 "//ios/clean/chrome/browser/ui", |
| 34 "//ui/base:base", | 33 "//ui/base:base", |
| 35 ] | 34 ] |
| 36 } | 35 } |
| OLD | NEW |