| 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/tabstrip_background_tab@2x~ipad.png", | 7 "resources/tabstrip_background_tab@2x~ipad.png", |
| 8 "resources/tabstrip_background_tab~ipad.png", | 8 "resources/tabstrip_background_tab~ipad.png", |
| 9 "resources/tabstrip_foreground_tab@2x~ipad.png", | 9 "resources/tabstrip_foreground_tab@2x~ipad.png", |
| 10 "resources/tabstrip_foreground_tab~ipad.png", | 10 "resources/tabstrip_foreground_tab~ipad.png", |
| (...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 79 sources = [ | 79 sources = [ |
| 80 "tab_strip_controller_unittest.mm", | 80 "tab_strip_controller_unittest.mm", |
| 81 ] | 81 ] |
| 82 deps = [ | 82 deps = [ |
| 83 ":tabs", | 83 ":tabs", |
| 84 "//base", | 84 "//base", |
| 85 "//ios/chrome/browser/browser_state:test_support", | 85 "//ios/chrome/browser/browser_state:test_support", |
| 86 "//ios/chrome/browser/sessions:test_support", | 86 "//ios/chrome/browser/sessions:test_support", |
| 87 "//ios/chrome/browser/tabs", | 87 "//ios/chrome/browser/tabs", |
| 88 "//ios/chrome/browser/ui", | 88 "//ios/chrome/browser/ui", |
| 89 "//ios/web:test_support", | 89 "//ios/web/public/test:test_support", |
| 90 "//testing/gtest", | 90 "//testing/gtest", |
| 91 "//third_party/ocmock", | 91 "//third_party/ocmock", |
| 92 ] | 92 ] |
| 93 } | 93 } |
| 94 | 94 |
| 95 source_set("eg_tests") { | 95 source_set("eg_tests") { |
| 96 configs += [ "//build/config/compiler:enable_arc" ] | 96 configs += [ "//build/config/compiler:enable_arc" ] |
| 97 testonly = true | 97 testonly = true |
| 98 sources = [ | 98 sources = [ |
| 99 "tab_strip_egtest.mm", | 99 "tab_strip_egtest.mm", |
| 100 ] | 100 ] |
| 101 deps = [ | 101 deps = [ |
| 102 ":tabs", | 102 ":tabs", |
| 103 "//ios/chrome/app/strings", | 103 "//ios/chrome/app/strings", |
| 104 "//ios/chrome/browser", | 104 "//ios/chrome/browser", |
| 105 "//ios/chrome/browser/ui", | 105 "//ios/chrome/browser/ui", |
| 106 "//ios/chrome/test/app:test_support", | 106 "//ios/chrome/test/app:test_support", |
| 107 "//ios/chrome/test/earl_grey:test_support", | 107 "//ios/chrome/test/earl_grey:test_support", |
| 108 "//ios/third_party/earl_grey", | 108 "//ios/third_party/earl_grey", |
| 109 "//ui/base", | 109 "//ui/base", |
| 110 ] | 110 ] |
| 111 libs = [ "XCTest.framework" ] | 111 libs = [ "XCTest.framework" ] |
| 112 } | 112 } |
| OLD | NEW |