| 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", | 11 "tools_mediator_private.h", |
| 12 "tools_menu_model.h", | |
| 13 "tools_menu_model.mm", | |
| 14 ] | 12 ] |
| 15 | 13 |
| 16 configs += [ "//build/config/compiler:enable_arc" ] | 14 configs += [ "//build/config/compiler:enable_arc" ] |
| 17 | 15 |
| 18 deps = [ | 16 deps = [ |
| 19 ":tools_ui", | 17 ":tools_ui", |
| 20 "//base", | 18 "//base", |
| 21 "//components/strings", | |
| 22 "//ios/chrome/app/strings", | |
| 23 "//ios/chrome/browser/ui/tools_menu", | |
| 24 "//ios/clean/chrome/browser/ui/animators", | 19 "//ios/clean/chrome/browser/ui/animators", |
| 25 "//ios/clean/chrome/browser/ui/commands", | 20 "//ios/clean/chrome/browser/ui/commands", |
| 26 "//ios/clean/chrome/browser/ui/presenters", | 21 "//ios/clean/chrome/browser/ui/presenters", |
| 27 "//ios/shared/chrome/browser/ui/browser_list", | 22 "//ios/shared/chrome/browser/ui/browser_list", |
| 28 "//ios/shared/chrome/browser/ui/coordinators", | 23 "//ios/shared/chrome/browser/ui/coordinators", |
| 29 "//ios/shared/chrome/browser/ui/tools_menu", | 24 "//ios/shared/chrome/browser/ui/tools_menu", |
| 30 "//ios/web", | 25 "//ios/web", |
| 31 "//ui/base", | 26 "//ui/base", |
| 32 ] | 27 ] |
| 33 } | 28 } |
| 34 | 29 |
| 35 source_set("tools_ui") { | 30 source_set("tools_ui") { |
| 36 sources = [ | 31 sources = [ |
| 37 "menu_overflow_controls_stackview.h", | 32 "menu_overflow_controls_stackview.h", |
| 38 "menu_overflow_controls_stackview.mm", | 33 "menu_overflow_controls_stackview.mm", |
| 39 "menu_view_controller.h", | 34 "menu_view_controller.h", |
| 40 "menu_view_controller.mm", | 35 "menu_view_controller.mm", |
| 41 "tools_actions.h", | |
| 42 "tools_consumer.h", | 36 "tools_consumer.h", |
| 43 "tools_menu_item.h", | 37 "tools_menu_item.h", |
| 44 "tools_menu_item.mm", | 38 "tools_menu_item.mm", |
| 39 "tools_menu_model.h", |
| 40 "tools_menu_model.mm", |
| 45 ] | 41 ] |
| 46 | 42 |
| 47 configs += [ "//build/config/compiler:enable_arc" ] | 43 configs += [ "//build/config/compiler:enable_arc" ] |
| 48 | 44 |
| 49 deps = [ | 45 deps = [ |
| 50 "//base", | 46 "//base", |
| 51 "//base:i18n", | 47 "//base:i18n", |
| 48 "//components/strings", |
| 49 "//ios/chrome/app/strings", |
| 52 "//ios/chrome/app/theme", | 50 "//ios/chrome/app/theme", |
| 53 "//ios/chrome/browser/ui", | 51 "//ios/chrome/browser/ui", |
| 52 "//ios/chrome/browser/ui/tools_menu", |
| 54 "//ios/clean/chrome/browser/ui/commands", | 53 "//ios/clean/chrome/browser/ui/commands", |
| 55 "//ios/clean/chrome/browser/ui/toolbar:toolbar_components_ui", | 54 "//ios/clean/chrome/browser/ui/toolbar:toolbar_components_ui", |
| 56 "//ios/third_party/material_components_ios", | 55 "//ios/third_party/material_components_ios", |
| 57 ] | 56 ] |
| 58 } | 57 } |
| 59 | 58 |
| 60 source_set("unit_tests") { | 59 source_set("unit_tests") { |
| 61 testonly = true | 60 testonly = true |
| 62 | 61 |
| 63 sources = [ | 62 sources = [ |
| (...skipping 10 matching lines...) Expand all Loading... |
| 74 "//base/test:test_support", | 73 "//base/test:test_support", |
| 75 "//ios/chrome/test/base", | 74 "//ios/chrome/test/base", |
| 76 "//ios/shared/chrome/browser/ui/toolbar:test_support", | 75 "//ios/shared/chrome/browser/ui/toolbar:test_support", |
| 77 "//ios/shared/chrome/browser/ui/tools_menu", | 76 "//ios/shared/chrome/browser/ui/tools_menu", |
| 78 "//ios/web", | 77 "//ios/web", |
| 79 "//ios/web/public/test/fakes", | 78 "//ios/web/public/test/fakes", |
| 80 "//testing/gtest", | 79 "//testing/gtest", |
| 81 "//third_party/ocmock", | 80 "//third_party/ocmock", |
| 82 ] | 81 ] |
| 83 } | 82 } |
| OLD | NEW |