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

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

Issue 2693043002: [ios clean] Add overflow buttons for ToolsMenu. (Closed)
Patch Set: Created 3 years, 10 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 ] 9 ]
10 10
11 configs += [ "//build/config/compiler:enable_arc" ] 11 configs += [ "//build/config/compiler:enable_arc" ]
12 12
13 deps = [ 13 deps = [
14 ":toolbar_ui", 14 ":toolbar_ui",
15 "//base", 15 "//base",
16 "//ios/clean/chrome/browser", 16 "//ios/clean/chrome/browser",
17 "//ios/clean/chrome/browser/ui/commands", 17 "//ios/clean/chrome/browser/ui/commands",
18 "//ios/clean/chrome/browser/ui/tools", 18 "//ios/clean/chrome/browser/ui/tools",
19 "//ios/shared/chrome/browser/coordinator_context", 19 "//ios/shared/chrome/browser/coordinator_context",
20 "//ios/web", 20 "//ios/web",
21 ] 21 ]
22 } 22 }
23 23
24 source_set("toolbar_ui") { 24 source_set("toolbar_ui") {
25 sources = [ 25 sources = [
26 "toolbar_button+factory.h",
27 "toolbar_button+factory.mm",
28 "toolbar_button.h",
29 "toolbar_button.mm",
30 "toolbar_component_options.h",
31 "toolbar_view_controller.h", 26 "toolbar_view_controller.h",
32 "toolbar_view_controller.mm", 27 "toolbar_view_controller.mm",
33 ] 28 ]
34 deps = [ 29 deps = [
30 ":toolbar_components",
35 "//base", 31 "//base",
36 "//ios/chrome/app/theme",
37 "//ios/chrome/browser/ui",
38 "//ios/clean/chrome/browser/ui/actions", 32 "//ios/clean/chrome/browser/ui/actions",
39 "//ios/clean/chrome/browser/ui/animators", 33 "//ios/clean/chrome/browser/ui/animators",
40 "//ios/clean/chrome/browser/ui/commands", 34 "//ios/clean/chrome/browser/ui/commands",
41 "//ios/clean/chrome/browser/ui/tools", 35 "//ios/clean/chrome/browser/ui/tools",
42 ] 36 ]
43 libs = [ "UIKit.framework" ] 37 libs = [ "UIKit.framework" ]
44 configs += [ "//build/config/compiler:enable_arc" ] 38 configs += [ "//build/config/compiler:enable_arc" ]
39 }
40
41 source_set("toolbar_components") {
sczs 2017/02/14 23:54:42 This might or might not be end up being used by To
edchin 2017/02/15 04:14:50 The line between toolbar_ui and toolbar_components
marq (ping after 24h) 2017/02/15 15:06:16 I think the idea is that _components might be used
sczs 2017/02/16 00:31:39 Yes, that is the idea. I guess I could rename this
edchin 2017/02/16 01:21:00 I'm okay with either, with a slight preference for
42 sources = [
43 "toolbar_button+factory.h",
44 "toolbar_button+factory.mm",
45 "toolbar_button.h",
46 "toolbar_button.mm",
47 "toolbar_component_options.h",
48 ]
49 deps = [
50 "//base",
51 "//ios/chrome/app/theme",
52 "//ios/chrome/browser/ui",
53 ]
54 libs = [ "UIKit.framework" ]
55 configs += [ "//build/config/compiler:enable_arc" ]
45 } 56 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698