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