| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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 bundle_data("resources") { | 5 bundle_data("resources") { |
| 6 sources = [ | 6 sources = [ |
| 7 "resources/bookmarks_bar_bg.png", | 7 "resources/bookmarks_bar_bg.png", |
| 8 "resources/bookmarks_bar_bg@2x.png", | 8 "resources/bookmarks_bar_bg@2x.png", |
| 9 "resources/bookmarks_bar_bg@2x~ipad.png", | 9 "resources/bookmarks_bar_bg@2x~ipad.png", |
| 10 "resources/bookmarks_bar_bg_pressed@2x~ipad.png", | 10 "resources/bookmarks_bar_bg_pressed@2x~ipad.png", |
| (...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 130 "//ios/chrome/browser/ui", | 130 "//ios/chrome/browser/ui", |
| 131 "//ios/chrome/browser/ui/commands", | 131 "//ios/chrome/browser/ui/commands", |
| 132 "//ios/chrome/browser/ui/toolbar", | 132 "//ios/chrome/browser/ui/toolbar", |
| 133 "//ios/chrome/browser/ui/toolbar:resource_macros", | 133 "//ios/chrome/browser/ui/toolbar:resource_macros", |
| 134 "//ios/chrome/common", | 134 "//ios/chrome/common", |
| 135 "//ui/base", | 135 "//ui/base", |
| 136 ] | 136 ] |
| 137 } | 137 } |
| 138 | 138 |
| 139 source_set("ntp_internal") { | 139 source_set("ntp_internal") { |
| 140 configs += [ "//build/config/compiler:enable_arc" ] |
| 140 sources = [ | 141 sources = [ |
| 141 "centering_scrollview.h", | 142 "centering_scrollview.h", |
| 142 "centering_scrollview.mm", | 143 "centering_scrollview.mm", |
| 143 "google_landing_consumer.h", | 144 "google_landing_consumer.h", |
| 144 "google_landing_mediator.h", | 145 "google_landing_mediator.h", |
| 145 "google_landing_mediator.mm", | 146 "google_landing_mediator.mm", |
| 146 "google_landing_view_controller.h", | 147 "google_landing_view_controller.h", |
| 147 "google_landing_view_controller.mm", | 148 "google_landing_view_controller.mm", |
| 148 "incognito_panel_controller.h", | 149 "incognito_panel_controller.h", |
| 149 "incognito_panel_controller.mm", | 150 "incognito_panel_controller.mm", |
| 150 "most_visited_cell.h", | 151 "most_visited_cell.h", |
| 151 "most_visited_cell.mm", | 152 "most_visited_cell.mm", |
| 152 "most_visited_layout.h", | 153 "most_visited_layout.h", |
| 153 "most_visited_layout.mm", | 154 "most_visited_layout.mm", |
| 154 "new_tab_page_bar.h", | 155 "new_tab_page_bar.h", |
| 155 "new_tab_page_bar.mm", | 156 "new_tab_page_bar.mm", |
| 156 "new_tab_page_bar_button.h", | 157 "new_tab_page_bar_button.h", |
| 157 "new_tab_page_bar_button.mm", | 158 "new_tab_page_bar_button.mm", |
| 158 "new_tab_page_bar_item.h", | 159 "new_tab_page_bar_item.h", |
| 159 "new_tab_page_bar_item.mm", | 160 "new_tab_page_bar_item.mm", |
| 160 "new_tab_page_controller.h", | 161 "new_tab_page_controller.h", |
| 161 "new_tab_page_controller.mm", | 162 "new_tab_page_controller.mm", |
| 163 "new_tab_page_controller_testing.h", |
| 162 "new_tab_page_panel_protocol.mm", | 164 "new_tab_page_panel_protocol.mm", |
| 163 "new_tab_page_view.h", | 165 "new_tab_page_view.h", |
| 164 "new_tab_page_view.mm", | 166 "new_tab_page_view.mm", |
| 165 "notification_promo_whats_new.h", | 167 "notification_promo_whats_new.h", |
| 166 "notification_promo_whats_new.mm", | 168 "notification_promo_whats_new.mm", |
| 167 "whats_new_header_view.h", | 169 "whats_new_header_view.h", |
| 168 "whats_new_header_view.mm", | 170 "whats_new_header_view.mm", |
| 169 ] | 171 ] |
| 170 public_deps = [ | 172 public_deps = [ |
| 171 ":ntp_header", | 173 ":ntp_header", |
| (...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 305 "new_tab_page_perftest.mm", | 307 "new_tab_page_perftest.mm", |
| 306 ] | 308 ] |
| 307 deps = [ | 309 deps = [ |
| 308 "//base/test:test_support", | 310 "//base/test:test_support", |
| 309 "//ios/chrome/browser/sessions", | 311 "//ios/chrome/browser/sessions", |
| 310 "//ios/chrome/browser/tabs", | 312 "//ios/chrome/browser/tabs", |
| 311 "//ios/chrome/browser/test:perf_test_support", | 313 "//ios/chrome/browser/test:perf_test_support", |
| 312 "//ios/chrome/browser/ui:ui_internal", | 314 "//ios/chrome/browser/ui:ui_internal", |
| 313 ] | 315 ] |
| 314 } | 316 } |
| OLD | NEW |