| 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 "tools_mediator_private.h", |
| 12 "tools_menu_model.h", |
| 13 "tools_menu_model.mm", |
| 11 ] | 14 ] |
| 12 | 15 |
| 13 configs += [ "//build/config/compiler:enable_arc" ] | 16 configs += [ "//build/config/compiler:enable_arc" ] |
| 14 | 17 |
| 15 deps = [ | 18 deps = [ |
| 16 ":tools_ui", | 19 ":tools_ui", |
| 17 "//base", | 20 "//base", |
| 21 "//components/strings", |
| 22 "//ios/chrome/app/strings", |
| 23 "//ios/chrome/browser/ui/tools_menu", |
| 18 "//ios/clean/chrome/browser/ui/animators", | 24 "//ios/clean/chrome/browser/ui/animators", |
| 19 "//ios/clean/chrome/browser/ui/commands", | 25 "//ios/clean/chrome/browser/ui/commands", |
| 20 "//ios/clean/chrome/browser/ui/presenters", | 26 "//ios/clean/chrome/browser/ui/presenters", |
| 21 "//ios/shared/chrome/browser/ui/browser_list", | 27 "//ios/shared/chrome/browser/ui/browser_list", |
| 22 "//ios/shared/chrome/browser/ui/coordinators", | 28 "//ios/shared/chrome/browser/ui/coordinators", |
| 23 "//ios/shared/chrome/browser/ui/tools_menu", | 29 "//ios/shared/chrome/browser/ui/tools_menu", |
| 30 "//ui/base", |
| 24 ] | 31 ] |
| 25 } | 32 } |
| 26 | 33 |
| 27 source_set("tools_ui") { | 34 source_set("tools_ui") { |
| 28 sources = [ | 35 sources = [ |
| 29 "menu_overflow_controls_stackview.h", | 36 "menu_overflow_controls_stackview.h", |
| 30 "menu_overflow_controls_stackview.mm", | 37 "menu_overflow_controls_stackview.mm", |
| 31 "menu_view_controller.h", | 38 "menu_view_controller.h", |
| 32 "menu_view_controller.mm", | 39 "menu_view_controller.mm", |
| 33 "tools_actions.h", | 40 "tools_actions.h", |
| (...skipping 28 matching lines...) Expand all Loading... |
| 62 deps = [ | 69 deps = [ |
| 63 ":tools", | 70 ":tools", |
| 64 ":tools_ui", | 71 ":tools_ui", |
| 65 "//base/test:test_support", | 72 "//base/test:test_support", |
| 66 "//ios/chrome/test/base", | 73 "//ios/chrome/test/base", |
| 67 "//ios/shared/chrome/browser/ui/tools_menu", | 74 "//ios/shared/chrome/browser/ui/tools_menu", |
| 68 "//testing/gtest", | 75 "//testing/gtest", |
| 69 "//third_party/ocmock", | 76 "//third_party/ocmock", |
| 70 ] | 77 ] |
| 71 } | 78 } |
| OLD | NEW |