Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(206)

Side by Side Diff: ios/clean/chrome/browser/ui/tools/BUILD.gn

Issue 2812463002: [ios clean] Creates ToolsMenu UnitTests (Closed)
Patch Set: Rebase Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | ios/clean/chrome/browser/ui/tools/tools_coordinator_unittest.mm » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « no previous file | ios/clean/chrome/browser/ui/tools/tools_coordinator_unittest.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698