| 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", |
| (...skipping 23 matching lines...) Expand all Loading... |
| 34 "tools_consumer.h", | 34 "tools_consumer.h", |
| 35 "tools_menu_item.h", | 35 "tools_menu_item.h", |
| 36 "tools_menu_item.mm", | 36 "tools_menu_item.mm", |
| 37 ] | 37 ] |
| 38 | 38 |
| 39 configs += [ "//build/config/compiler:enable_arc" ] | 39 configs += [ "//build/config/compiler:enable_arc" ] |
| 40 | 40 |
| 41 deps = [ | 41 deps = [ |
| 42 "//base", | 42 "//base", |
| 43 "//base:i18n", | 43 "//base:i18n", |
| 44 "//ios/chrome/app/theme", |
| 44 "//ios/chrome/browser/ui", | 45 "//ios/chrome/browser/ui", |
| 45 "//ios/clean/chrome/browser/ui/commands", | 46 "//ios/clean/chrome/browser/ui/commands", |
| 46 "//ios/clean/chrome/browser/ui/toolbar:toolbar_components_ui", | 47 "//ios/clean/chrome/browser/ui/toolbar:toolbar_components_ui", |
| 47 "//ios/third_party/material_components_ios", | 48 "//ios/third_party/material_components_ios", |
| 48 ] | 49 ] |
| 49 } | 50 } |
| 50 | 51 |
| 51 source_set("unit_tests") { | 52 source_set("unit_tests") { |
| 52 testonly = true | 53 testonly = true |
| 53 | 54 |
| 54 sources = [ | 55 sources = [ |
| 55 "tools_coordinator_unittest.mm", | 56 "tools_coordinator_unittest.mm", |
| 56 "tools_mediator_unittest.mm", | 57 "tools_mediator_unittest.mm", |
| 57 ] | 58 ] |
| 58 | 59 |
| 59 configs += [ "//build/config/compiler:enable_arc" ] | 60 configs += [ "//build/config/compiler:enable_arc" ] |
| 60 | 61 |
| 61 deps = [ | 62 deps = [ |
| 62 ":tools", | 63 ":tools", |
| 63 ":tools_ui", | 64 ":tools_ui", |
| 64 "//base/test:test_support", | 65 "//base/test:test_support", |
| 65 "//ios/chrome/test/base", | 66 "//ios/chrome/test/base", |
| 66 "//ios/shared/chrome/browser/ui/tools_menu", | 67 "//ios/shared/chrome/browser/ui/tools_menu", |
| 67 "//testing/gtest", | 68 "//testing/gtest", |
| 68 "//third_party/ocmock", | 69 "//third_party/ocmock", |
| 69 ] | 70 ] |
| 70 } | 71 } |
| OLD | NEW |