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("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 ] | 11 ] |
12 | 12 |
13 configs += [ "//build/config/compiler:enable_arc" ] | 13 configs += [ "//build/config/compiler:enable_arc" ] |
14 | 14 |
15 deps = [ | 15 deps = [ |
16 ":tools_ui", | 16 ":tools_ui", |
17 "//base", | 17 "//base", |
18 "//ios/clean/chrome/browser/ui/actions", | 18 "//ios/clean/chrome/browser/ui/actions", |
19 "//ios/clean/chrome/browser/ui/animators", | 19 "//ios/clean/chrome/browser/ui/animators", |
20 "//ios/clean/chrome/browser/ui/presenters", | 20 "//ios/clean/chrome/browser/ui/presenters", |
21 "//ios/shared/chrome/browser/coordinator_context", | |
22 "//ios/shared/chrome/browser/ui/browser_list", | 21 "//ios/shared/chrome/browser/ui/browser_list", |
23 "//ios/shared/chrome/browser/ui/coordinators", | 22 "//ios/shared/chrome/browser/ui/coordinators", |
24 ] | 23 ] |
25 } | 24 } |
26 | 25 |
27 source_set("tools_ui") { | 26 source_set("tools_ui") { |
28 sources = [ | 27 sources = [ |
29 "menu_overflow_controls_stackview.h", | 28 "menu_overflow_controls_stackview.h", |
30 "menu_overflow_controls_stackview.mm", | 29 "menu_overflow_controls_stackview.mm", |
31 "menu_view_controller.h", | 30 "menu_view_controller.h", |
32 "menu_view_controller.mm", | 31 "menu_view_controller.mm", |
33 "tools_consumer.h", | 32 "tools_consumer.h", |
34 "tools_menu_item.h", | 33 "tools_menu_item.h", |
35 "tools_menu_item.mm", | 34 "tools_menu_item.mm", |
36 ] | 35 ] |
37 | 36 |
38 configs += [ "//build/config/compiler:enable_arc" ] | 37 configs += [ "//build/config/compiler:enable_arc" ] |
39 | 38 |
40 deps = [ | 39 deps = [ |
41 "//base", | 40 "//base", |
42 "//base:i18n", | 41 "//base:i18n", |
43 "//ios/chrome/browser/ui", | 42 "//ios/chrome/browser/ui", |
44 "//ios/clean/chrome/browser/ui/commands", | 43 "//ios/clean/chrome/browser/ui/commands", |
45 "//ios/clean/chrome/browser/ui/toolbar:toolbar_components_ui", | 44 "//ios/clean/chrome/browser/ui/toolbar:toolbar_components_ui", |
46 "//ios/third_party/material_roboto_font_loader_ios", | 45 "//ios/third_party/material_roboto_font_loader_ios", |
47 ] | 46 ] |
48 } | 47 } |
OLD | NEW |