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("tab_grid") { | 5 source_set("tab_grid") { |
6 sources = [ | 6 sources = [ |
7 "tab_grid_coordinator.h", | 7 "tab_grid_coordinator.h", |
8 "tab_grid_coordinator.mm", | 8 "tab_grid_coordinator.mm", |
9 "tab_grid_mediator.h", | 9 "tab_grid_mediator.h", |
10 "tab_grid_mediator.mm", | 10 "tab_grid_mediator.mm", |
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
58 "//ios/chrome/browser/ui/colors", | 58 "//ios/chrome/browser/ui/colors", |
59 "//ios/chrome/browser/ui/tab_switcher", | 59 "//ios/chrome/browser/ui/tab_switcher", |
60 "//ios/clean/chrome/browser/ui/actions", | 60 "//ios/clean/chrome/browser/ui/actions", |
61 "//ios/clean/chrome/browser/ui/animators", | 61 "//ios/clean/chrome/browser/ui/animators", |
62 "//ios/clean/chrome/browser/ui/commands", | 62 "//ios/clean/chrome/browser/ui/commands", |
63 "//ios/clean/chrome/browser/ui/tab_collection:tab_collection_ui", | 63 "//ios/clean/chrome/browser/ui/tab_collection:tab_collection_ui", |
64 "//ios/third_party/material_components_ios:material_components_ios", | 64 "//ios/third_party/material_components_ios:material_components_ios", |
65 "//ui/base", | 65 "//ui/base", |
66 ] | 66 ] |
67 } | 67 } |
| 68 |
| 69 source_set("unit_tests") { |
| 70 testonly = true |
| 71 |
| 72 sources = [ |
| 73 "tab_grid_mediator_unittest.mm", |
| 74 ] |
| 75 |
| 76 configs += [ "//build/config/compiler:enable_arc" ] |
| 77 |
| 78 deps = [ |
| 79 ":tab_grid", |
| 80 ":tab_grid_ui", |
| 81 "//base", |
| 82 "//base/test:test_support", |
| 83 "//ios/chrome/test/base", |
| 84 "//ios/shared/chrome/browser/tabs", |
| 85 "//ios/shared/chrome/browser/tabs:test_support", |
| 86 "//ios/web:test_support", |
| 87 "//testing/gtest", |
| 88 "//third_party/ocmock", |
| 89 ] |
| 90 } |
OLD | NEW |