| 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/tabswitcher_full_history.png", | 7 "resources/tabswitcher_full_history.png", |
| 8 "resources/tabswitcher_full_history@2x.png", | 8 "resources/tabswitcher_full_history@2x.png", |
| 9 "resources/tabswitcher_full_history@3x.png", | 9 "resources/tabswitcher_full_history@3x.png", |
| 10 "resources/tabswitcher_incognito.png", | 10 "resources/tabswitcher_incognito.png", |
| (...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 150 "//ios/chrome/app/theme", | 150 "//ios/chrome/app/theme", |
| 151 "//ios/chrome/browser/browser_state", | 151 "//ios/chrome/browser/browser_state", |
| 152 "//ios/chrome/browser/favicon", | 152 "//ios/chrome/browser/favicon", |
| 153 "//ios/chrome/browser/sync", | 153 "//ios/chrome/browser/sync", |
| 154 "//ios/chrome/browser/ui", | 154 "//ios/chrome/browser/ui", |
| 155 "//ui/base", | 155 "//ui/base", |
| 156 ] | 156 ] |
| 157 } | 157 } |
| 158 | 158 |
| 159 source_set("unit_tests") { | 159 source_set("unit_tests") { |
| 160 configs += [ "//build/config/compiler:enable_arc" ] |
| 160 testonly = true | 161 testonly = true |
| 161 sources = [ | 162 sources = [ |
| 162 "tab_model_snapshot_unittest.mm", | 163 "tab_model_snapshot_unittest.mm", |
| 163 "tab_switcher_model_unittest.mm", | 164 "tab_switcher_model_unittest.mm", |
| 164 "tab_switcher_utils_unittest.mm", | 165 "tab_switcher_utils_unittest.mm", |
| 165 ] | 166 ] |
| 166 deps = [ | 167 deps = [ |
| 167 ":tab_switcher", | 168 ":tab_switcher", |
| 168 ":utils", | 169 ":utils", |
| 169 "//base", | 170 "//base", |
| (...skipping 23 matching lines...) Expand all Loading... |
| 193 "//ios/chrome/test/app:test_support", | 194 "//ios/chrome/test/app:test_support", |
| 194 "//ios/chrome/test/earl_grey:test_support", | 195 "//ios/chrome/test/earl_grey:test_support", |
| 195 "//ios/third_party/earl_grey", | 196 "//ios/third_party/earl_grey", |
| 196 "//ui/base", | 197 "//ui/base", |
| 197 ] | 198 ] |
| 198 libs = [ | 199 libs = [ |
| 199 "UIKit.framework", | 200 "UIKit.framework", |
| 200 "XCTest.framework", | 201 "XCTest.framework", |
| 201 ] | 202 ] |
| 202 } | 203 } |
| OLD | NEW |