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

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

Issue 2814963002: [ios clean] Use ToolsMenuConfiguration for Menu context. (Closed)
Patch Set: Update Unittest 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
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("toolbar") { 5 source_set("toolbar") {
6 sources = [ 6 sources = [
7 "toolbar_coordinator.h", 7 "toolbar_coordinator.h",
8 "toolbar_coordinator.mm", 8 "toolbar_coordinator.mm",
9 "toolbar_mediator.h", 9 "toolbar_mediator.h",
10 "toolbar_mediator.mm", 10 "toolbar_mediator.mm",
11 ] 11 ]
12 12
13 configs += [ "//build/config/compiler:enable_arc" ] 13 configs += [ "//build/config/compiler:enable_arc" ]
14 14
15 deps = [ 15 deps = [
16 ":toolbar_ui", 16 ":toolbar_ui",
17 "//base", 17 "//base",
18 "//ios/clean/chrome/browser/ui/commands", 18 "//ios/clean/chrome/browser/ui/commands",
19 "//ios/clean/chrome/browser/ui/omnibox", 19 "//ios/clean/chrome/browser/ui/omnibox",
20 "//ios/clean/chrome/browser/ui/tools", 20 "//ios/clean/chrome/browser/ui/tools",
21 "//ios/shared/chrome/browser/ui/browser_list", 21 "//ios/shared/chrome/browser/ui/browser_list",
22 "//ios/shared/chrome/browser/ui/commands", 22 "//ios/shared/chrome/browser/ui/commands",
23 "//ios/shared/chrome/browser/ui/coordinators", 23 "//ios/shared/chrome/browser/ui/coordinators",
24 "//ios/shared/chrome/browser/ui/tools_menu",
24 "//ios/web", 25 "//ios/web",
25 ] 26 ]
26 } 27 }
27 28
28 source_set("toolbar_ui") { 29 source_set("toolbar_ui") {
29 sources = [ 30 sources = [
30 "toolbar_consumer.h", 31 "toolbar_consumer.h",
31 "toolbar_view_controller.h", 32 "toolbar_view_controller.h",
32 "toolbar_view_controller.mm", 33 "toolbar_view_controller.mm",
33 ] 34 ]
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
71 ":toolbar_ui", 72 ":toolbar_ui",
72 "//base", 73 "//base",
73 "//base/test:test_support", 74 "//base/test:test_support",
74 "//ios/web", 75 "//ios/web",
75 "//ios/web:test_support", 76 "//ios/web:test_support",
76 "//testing/gtest", 77 "//testing/gtest",
77 "//third_party/ocmock", 78 "//third_party/ocmock",
78 ] 79 ]
79 configs += [ "//build/config/compiler:enable_arc" ] 80 configs += [ "//build/config/compiler:enable_arc" ]
80 } 81 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698