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 27 matching lines...) Expand all Loading... | |
38 | 38 |
39 deps = [ | 39 deps = [ |
40 "//base", | 40 "//base", |
41 "//base:i18n", | 41 "//base:i18n", |
42 "//ios/chrome/browser/ui", | 42 "//ios/chrome/browser/ui", |
43 "//ios/clean/chrome/browser/ui/commands", | 43 "//ios/clean/chrome/browser/ui/commands", |
44 "//ios/clean/chrome/browser/ui/toolbar:toolbar_components_ui", | 44 "//ios/clean/chrome/browser/ui/toolbar:toolbar_components_ui", |
45 "//ios/third_party/material_components_ios", | 45 "//ios/third_party/material_components_ios", |
46 ] | 46 ] |
47 } | 47 } |
48 | |
49 source_set("unit_tests") { | |
50 testonly = true | |
51 | |
52 sources = [ | |
53 "tools_coordinator_unittest.mm", | |
54 "tools_mediator_unittest.mm", | |
55 ] | |
56 | |
57 configs += [ "//build/config/compiler:enable_arc" ] | |
58 | |
59 deps = [ | |
60 ":tools", | |
61 ":tools_ui", | |
62 "//base", | |
edchin
2017/04/10 21:16:11
I don't think you need this.
sczs
2017/04/12 20:10:11
Good catch! Done!
| |
63 "//base/test:test_support", | |
64 "//ios/chrome/test/base", | |
65 "//testing/gtest", | |
66 "//third_party/ocmock", | |
67 ] | |
68 } | |
OLD | NEW |