Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(65)

Side by Side Diff: ios/clean/chrome/browser/ui/tab_grid/BUILD.gn

Issue 2792823002: [ios] Unittest for TabGridMediator. (Closed)
Patch Set: Update Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | ios/clean/chrome/browser/ui/tab_grid/tab_grid_mediator.mm » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « no previous file | ios/clean/chrome/browser/ui/tab_grid/tab_grid_mediator.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698