| 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 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 145 deps = [ | 145 deps = [ |
| 146 "//base", | 146 "//base", |
| 147 "//components/browser_sync", | 147 "//components/browser_sync", |
| 148 "//components/sync", | 148 "//components/sync", |
| 149 "//components/sync_sessions", | 149 "//components/sync_sessions", |
| 150 "//ios/chrome/app/strings", | 150 "//ios/chrome/app/strings", |
| 151 "//ios/chrome/app/theme", | 151 "//ios/chrome/app/theme", |
| 152 "//ios/chrome/browser/browser_state", | 152 "//ios/chrome/browser/browser_state", |
| 153 "//ios/chrome/browser/favicon", | 153 "//ios/chrome/browser/favicon", |
| 154 "//ios/chrome/browser/sync", | 154 "//ios/chrome/browser/sync", |
| 155 "//ios/chrome/browser/ui", |
| 155 "//ui/base", | 156 "//ui/base", |
| 156 ] | 157 ] |
| 157 } | 158 } |
| 158 | 159 |
| 159 source_set("unit_tests") { | 160 source_set("unit_tests") { |
| 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", |
| (...skipping 27 matching lines...) Expand all Loading... |
| 192 "//ios/chrome/test/app:test_support", | 193 "//ios/chrome/test/app:test_support", |
| 193 "//ios/chrome/test/earl_grey:test_support", | 194 "//ios/chrome/test/earl_grey:test_support", |
| 194 "//ios/third_party/earl_grey", | 195 "//ios/third_party/earl_grey", |
| 195 "//ui/base", | 196 "//ui/base", |
| 196 ] | 197 ] |
| 197 libs = [ | 198 libs = [ |
| 198 "UIKit.framework", | 199 "UIKit.framework", |
| 199 "XCTest.framework", | 200 "XCTest.framework", |
| 200 ] | 201 ] |
| 201 } | 202 } |
| OLD | NEW |