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

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

Issue 2769963007: [ios clean] Creates ToolsMenu Mediator and Consumer (Closed)
Patch Set: CL Feedback, ARC Guards and Comments 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/tools/menu_view_controller.h » ('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("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",
10 "tools_mediator.mm",
9 ] 11 ]
10 12
11 configs += [ "//build/config/compiler:enable_arc" ] 13 configs += [ "//build/config/compiler:enable_arc" ]
12 14
13 deps = [ 15 deps = [
14 ":tools_ui", 16 ":tools_ui",
15 "//base", 17 "//base",
16 "//ios/clean/chrome/browser/ui/actions", 18 "//ios/clean/chrome/browser/ui/actions",
17 "//ios/clean/chrome/browser/ui/animators", 19 "//ios/clean/chrome/browser/ui/animators",
18 "//ios/clean/chrome/browser/ui/presenters", 20 "//ios/clean/chrome/browser/ui/presenters",
19 "//ios/shared/chrome/browser/coordinator_context", 21 "//ios/shared/chrome/browser/coordinator_context",
20 "//ios/shared/chrome/browser/ui/coordinators", 22 "//ios/shared/chrome/browser/ui/coordinators",
21 ] 23 ]
22 } 24 }
23 25
24 source_set("tools_ui") { 26 source_set("tools_ui") {
25 sources = [ 27 sources = [
26 "menu_overflow_controls_stackview.h", 28 "menu_overflow_controls_stackview.h",
27 "menu_overflow_controls_stackview.mm", 29 "menu_overflow_controls_stackview.mm",
28 "menu_view_controller.h", 30 "menu_view_controller.h",
29 "menu_view_controller.mm", 31 "menu_view_controller.mm",
32 "tools_consumer.h",
33 "tools_menu_item.h",
34 "tools_menu_item.mm",
30 ] 35 ]
31 36
32 configs += [ "//build/config/compiler:enable_arc" ] 37 configs += [ "//build/config/compiler:enable_arc" ]
33 38
34 deps = [ 39 deps = [
35 "//base", 40 "//base",
36 "//base:i18n", 41 "//base:i18n",
37 "//ios/chrome/browser/ui", 42 "//ios/chrome/browser/ui",
38 "//ios/clean/chrome/browser/ui/actions", 43 "//ios/clean/chrome/browser/ui/actions",
39 "//ios/clean/chrome/browser/ui/toolbar:toolbar_components_ui", 44 "//ios/clean/chrome/browser/ui/toolbar:toolbar_components_ui",
40 "//ios/third_party/material_roboto_font_loader_ios", 45 "//ios/third_party/material_roboto_font_loader_ios",
41 ] 46 ]
42 } 47 }
OLDNEW
« no previous file with comments | « no previous file | ios/clean/chrome/browser/ui/tools/menu_view_controller.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698