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