| 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 188 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 199 "//url", | 199 "//url", |
| 200 ] | 200 ] |
| 201 libs = [ | 201 libs = [ |
| 202 "CoreGraphics.framework", | 202 "CoreGraphics.framework", |
| 203 "QuartzCore.framework", | 203 "QuartzCore.framework", |
| 204 "UIKit.framework", | 204 "UIKit.framework", |
| 205 ] | 205 ] |
| 206 } | 206 } |
| 207 | 207 |
| 208 source_set("unit_tests") { | 208 source_set("unit_tests") { |
| 209 configs += [ "//build/config/compiler:enable_arc" ] |
| 209 testonly = true | 210 testonly = true |
| 210 sources = [ | 211 sources = [ |
| 211 "centering_scrollview_unittest.mm", | 212 "centering_scrollview_unittest.mm", |
| 212 "google_landing_controller_unittest.mm", | 213 "google_landing_controller_unittest.mm", |
| 213 "most_visited_cell_unittest.mm", | 214 "most_visited_cell_unittest.mm", |
| 214 "new_tab_page_bar_unittest.mm", | 215 "new_tab_page_bar_unittest.mm", |
| 215 "new_tab_page_controller_unittest.mm", | 216 "new_tab_page_controller_unittest.mm", |
| 216 "notification_promo_whats_new_unittest.mm", | 217 "notification_promo_whats_new_unittest.mm", |
| 217 ] | 218 ] |
| 218 deps = [ | 219 deps = [ |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 273 "new_tab_page_perftest.mm", | 274 "new_tab_page_perftest.mm", |
| 274 ] | 275 ] |
| 275 deps = [ | 276 deps = [ |
| 276 "//base/test:test_support", | 277 "//base/test:test_support", |
| 277 "//ios/chrome/browser/sessions", | 278 "//ios/chrome/browser/sessions", |
| 278 "//ios/chrome/browser/tabs", | 279 "//ios/chrome/browser/tabs", |
| 279 "//ios/chrome/browser/test:perf_test_support", | 280 "//ios/chrome/browser/test:perf_test_support", |
| 280 "//ios/chrome/browser/ui:ui_internal", | 281 "//ios/chrome/browser/ui:ui_internal", |
| 281 ] | 282 ] |
| 282 } | 283 } |
| OLD | NEW |