| 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 227 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 238 "//ios/public/provider/chrome/browser/images", | 238 "//ios/public/provider/chrome/browser/images", |
| 239 "//ios/web:test_support", | 239 "//ios/web:test_support", |
| 240 "//testing/gtest", | 240 "//testing/gtest", |
| 241 "//third_party/ocmock", | 241 "//third_party/ocmock", |
| 242 "//ui/base", | 242 "//ui/base", |
| 243 "//url", | 243 "//url", |
| 244 ] | 244 ] |
| 245 } | 245 } |
| 246 | 246 |
| 247 source_set("eg_tests") { | 247 source_set("eg_tests") { |
| 248 configs += [ "//build/config/compiler:enable_arc" ] |
| 248 testonly = true | 249 testonly = true |
| 249 sources = [ | 250 sources = [ |
| 250 "new_tab_page_egtest.mm", | 251 "new_tab_page_egtest.mm", |
| 251 ] | 252 ] |
| 252 deps = [ | 253 deps = [ |
| 253 ":ntp_internal", | 254 ":ntp_internal", |
| 254 "//components/strings", | 255 "//components/strings", |
| 255 "//ios/chrome/app/strings", | 256 "//ios/chrome/app/strings", |
| 256 "//ios/chrome/browser/ui", | 257 "//ios/chrome/browser/ui", |
| 257 "//ios/chrome/browser/ui/commands", | 258 "//ios/chrome/browser/ui/commands", |
| (...skipping 13 matching lines...) Expand all Loading... |
| 271 "new_tab_page_perftest.mm", | 272 "new_tab_page_perftest.mm", |
| 272 ] | 273 ] |
| 273 deps = [ | 274 deps = [ |
| 274 "//base/test:test_support", | 275 "//base/test:test_support", |
| 275 "//ios/chrome/browser/sessions", | 276 "//ios/chrome/browser/sessions", |
| 276 "//ios/chrome/browser/tabs", | 277 "//ios/chrome/browser/tabs", |
| 277 "//ios/chrome/browser/test:perf_test_support", | 278 "//ios/chrome/browser/test:perf_test_support", |
| 278 "//ios/chrome/browser/ui:ui_internal", | 279 "//ios/chrome/browser/ui:ui_internal", |
| 279 ] | 280 ] |
| 280 } | 281 } |
| OLD | NEW |