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

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

Issue 2955033002: [ios clean] Moves animator and presenters under transitions (Closed)
Patch Set: Created 3 years, 5 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("tools") { 5 source_set("tools") {
6 sources = [ 6 sources = [
7 "tools_coordinator.h", 7 "tools_coordinator.h",
8 "tools_coordinator.mm", 8 "tools_coordinator.mm",
9 "tools_mediator.h", 9 "tools_mediator.h",
10 "tools_mediator.mm", 10 "tools_mediator.mm",
11 "tools_mediator_private.h", 11 "tools_mediator_private.h",
12 ] 12 ]
13 13
14 configs += [ "//build/config/compiler:enable_arc" ] 14 configs += [ "//build/config/compiler:enable_arc" ]
15 15
16 deps = [ 16 deps = [
17 ":tools_ui", 17 ":tools_ui",
18 "//base", 18 "//base",
19 "//ios/clean/chrome/browser/ui/commands", 19 "//ios/clean/chrome/browser/ui/commands",
20 "//ios/clean/chrome/browser/ui/transitions",
20 "//ios/shared/chrome/browser/ui/browser_list", 21 "//ios/shared/chrome/browser/ui/browser_list",
21 "//ios/shared/chrome/browser/ui/coordinators", 22 "//ios/shared/chrome/browser/ui/coordinators",
22 "//ios/shared/chrome/browser/ui/tools_menu", 23 "//ios/shared/chrome/browser/ui/tools_menu",
23 "//ios/web", 24 "//ios/web",
24 "//ui/base", 25 "//ui/base",
25 ] 26 ]
26 } 27 }
27 28
28 source_set("tools_ui") { 29 source_set("tools_ui") {
29 sources = [ 30 sources = [
30 "menu_overflow_controls_stackview.h", 31 "menu_overflow_controls_stackview.h",
31 "menu_overflow_controls_stackview.mm", 32 "menu_overflow_controls_stackview.mm",
32 "menu_view_controller.h", 33 "menu_view_controller.h",
33 "menu_view_controller.mm", 34 "menu_view_controller.mm",
34 "tools_consumer.h", 35 "tools_consumer.h",
35 "tools_menu_item.h", 36 "tools_menu_item.h",
36 "tools_menu_item.mm", 37 "tools_menu_item.mm",
37 "tools_menu_model.h", 38 "tools_menu_model.h",
38 "tools_menu_model.mm", 39 "tools_menu_model.mm",
39 "tools_menu_transition_controller.h",
40 "tools_menu_transition_controller.mm",
41 ] 40 ]
42 41
43 configs += [ "//build/config/compiler:enable_arc" ] 42 configs += [ "//build/config/compiler:enable_arc" ]
44 43
45 deps = [ 44 deps = [
46 "//base", 45 "//base",
47 "//base:i18n", 46 "//base:i18n",
48 "//components/strings", 47 "//components/strings",
49 "//ios/chrome/app/strings", 48 "//ios/chrome/app/strings",
50 "//ios/chrome/app/theme", 49 "//ios/chrome/app/theme",
51 "//ios/chrome/browser/ui", 50 "//ios/chrome/browser/ui",
52 "//ios/chrome/browser/ui/tools_menu", 51 "//ios/chrome/browser/ui/tools_menu",
53 "//ios/clean/chrome/browser/ui/animators",
54 "//ios/clean/chrome/browser/ui/commands", 52 "//ios/clean/chrome/browser/ui/commands",
55 "//ios/clean/chrome/browser/ui/presenters",
56 "//ios/clean/chrome/browser/ui/toolbar:toolbar_components_ui", 53 "//ios/clean/chrome/browser/ui/toolbar:toolbar_components_ui",
54 "//ios/clean/chrome/browser/ui/transitions",
57 "//ios/third_party/material_components_ios", 55 "//ios/third_party/material_components_ios",
58 ] 56 ]
59 } 57 }
60 58
61 source_set("unit_tests") { 59 source_set("unit_tests") {
62 testonly = true 60 testonly = true
63 61
64 sources = [ 62 sources = [
65 "tools_coordinator_unittest.mm", 63 "tools_coordinator_unittest.mm",
66 "tools_mediator_unittest.mm", 64 "tools_mediator_unittest.mm",
67 ] 65 ]
68 66
69 configs += [ "//build/config/compiler:enable_arc" ] 67 configs += [ "//build/config/compiler:enable_arc" ]
70 68
71 deps = [ 69 deps = [
72 ":tools", 70 ":tools",
73 ":tools_ui", 71 ":tools_ui",
74 "//base", 72 "//base",
75 "//base/test:test_support", 73 "//base/test:test_support",
76 "//ios/chrome/test/base", 74 "//ios/chrome/test/base",
77 "//ios/shared/chrome/browser/ui/toolbar:test_support", 75 "//ios/shared/chrome/browser/ui/toolbar:test_support",
78 "//ios/shared/chrome/browser/ui/tools_menu", 76 "//ios/shared/chrome/browser/ui/tools_menu",
79 "//ios/web", 77 "//ios/web",
80 "//ios/web/public/test/fakes", 78 "//ios/web/public/test/fakes",
81 "//testing/gtest", 79 "//testing/gtest",
82 "//third_party/ocmock", 80 "//third_party/ocmock",
83 ] 81 ]
84 } 82 }
OLDNEW
« no previous file with comments | « ios/clean/chrome/browser/ui/toolbar/toolbar_view_controller.h ('k') | ios/clean/chrome/browser/ui/tools/tools_coordinator.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698