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