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