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

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

Issue 2779213003: [clean] Use CommandDispatcher to show/close Settings. (Closed)
Patch Set: Fix tests 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
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",
11 ] 11 ]
12 12
13 configs += [ "//build/config/compiler:enable_arc" ] 13 configs += [ "//build/config/compiler:enable_arc" ]
14 14
15 deps = [ 15 deps = [
16 ":tab_grid_ui", 16 ":tab_grid_ui",
17 "//base", 17 "//base",
18 "//ios/chrome/browser/browser_state", 18 "//ios/chrome/browser/browser_state",
19 "//ios/clean/chrome/browser", 19 "//ios/clean/chrome/browser",
20 "//ios/clean/chrome/browser/ui/commands", 20 "//ios/clean/chrome/browser/ui/commands",
21 "//ios/clean/chrome/browser/ui/settings", 21 "//ios/clean/chrome/browser/ui/settings",
22 "//ios/clean/chrome/browser/ui/tab", 22 "//ios/clean/chrome/browser/ui/tab",
23 "//ios/shared/chrome/browser/coordinator_context", 23 "//ios/shared/chrome/browser/coordinator_context",
24 "//ios/shared/chrome/browser/tabs", 24 "//ios/shared/chrome/browser/tabs",
25 "//ios/shared/chrome/browser/ui/browser_list", 25 "//ios/shared/chrome/browser/ui/browser_list",
26 "//ios/shared/chrome/browser/ui/commands",
26 "//ios/shared/chrome/browser/ui/coordinators", 27 "//ios/shared/chrome/browser/ui/coordinators",
27 "//ios/web", 28 "//ios/web",
28 "//net", 29 "//net",
29 "//ui/base", 30 "//ui/base",
30 ] 31 ]
31 } 32 }
32 33
33 source_set("tab_grid_ui") { 34 source_set("tab_grid_ui") {
34 sources = [ 35 sources = [
35 "mdc_floating_button+cr_tab_grid.h", 36 "mdc_floating_button+cr_tab_grid.h",
(...skipping 22 matching lines...) Expand all
58 "//ios/chrome/browser/ui", 59 "//ios/chrome/browser/ui",
59 "//ios/chrome/browser/ui/colors", 60 "//ios/chrome/browser/ui/colors",
60 "//ios/chrome/browser/ui/tab_switcher", 61 "//ios/chrome/browser/ui/tab_switcher",
61 "//ios/clean/chrome/browser/ui/actions", 62 "//ios/clean/chrome/browser/ui/actions",
62 "//ios/clean/chrome/browser/ui/animators", 63 "//ios/clean/chrome/browser/ui/animators",
63 "//ios/clean/chrome/browser/ui/commands", 64 "//ios/clean/chrome/browser/ui/commands",
64 "//ios/third_party/material_components_ios:material_components_ios", 65 "//ios/third_party/material_components_ios:material_components_ios",
65 "//ui/base", 66 "//ui/base",
66 ] 67 ]
67 } 68 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698