| 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 source_set("recent_tabs") { | 5 source_set("recent_tabs") { |
| 6 sources = [ | 6 sources = [ |
| 7 "recent_tabs_bridges.h", | 7 "recent_tabs_bridges.h", |
| 8 "recent_tabs_bridges.mm", | 8 "recent_tabs_bridges.mm", |
| 9 "recent_tabs_panel_controller.h", | 9 "recent_tabs_panel_controller.h", |
| 10 "recent_tabs_panel_controller.mm", | 10 "recent_tabs_panel_controller.mm", |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 66 "//ios/chrome/browser/sync:test_support", | 66 "//ios/chrome/browser/sync:test_support", |
| 67 "//ios/chrome/browser/ui/ntp:ntp_internal", | 67 "//ios/chrome/browser/ui/ntp:ntp_internal", |
| 68 "//ios/chrome/test:test_support", | 68 "//ios/chrome/test:test_support", |
| 69 "//ios/web:test_support", | 69 "//ios/web:test_support", |
| 70 "//testing/gtest", | 70 "//testing/gtest", |
| 71 "//third_party/ocmock", | 71 "//third_party/ocmock", |
| 72 ] | 72 ] |
| 73 } | 73 } |
| 74 | 74 |
| 75 source_set("eg_tests") { | 75 source_set("eg_tests") { |
| 76 configs += [ "//build/config/compiler:enable_arc" ] |
| 76 testonly = true | 77 testonly = true |
| 77 sources = [ | 78 sources = [ |
| 78 "recent_tabs_panel_controller_egtest.mm", | 79 "recent_tabs_panel_controller_egtest.mm", |
| 79 ] | 80 ] |
| 80 deps = [ | 81 deps = [ |
| 81 "//components/strings", | 82 "//components/strings", |
| 82 "//ios/chrome/app/strings", | 83 "//ios/chrome/app/strings", |
| 83 "//ios/chrome/browser/ui", | 84 "//ios/chrome/browser/ui", |
| 84 "//ios/chrome/browser/ui/tools_menu", | 85 "//ios/chrome/browser/ui/tools_menu", |
| 85 "//ios/chrome/test/app:test_support", | 86 "//ios/chrome/test/app:test_support", |
| 86 "//ios/chrome/test/earl_grey:test_support", | 87 "//ios/chrome/test/earl_grey:test_support", |
| 87 "//ios/third_party/earl_grey", | 88 "//ios/third_party/earl_grey", |
| 88 "//ios/web:test_support", | 89 "//ios/web:test_support", |
| 89 ] | 90 ] |
| 90 libs = [ "XCTest.framework" ] | 91 libs = [ "XCTest.framework" ] |
| 91 } | 92 } |
| OLD | NEW |