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

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

Issue 2955033002: [ios clean] Moves animator and presenters under transitions (Closed)
Patch Set: Created 3 years, 5 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",
(...skipping 20 matching lines...) Expand all
31 source_set("toolbar_ui") { 31 source_set("toolbar_ui") {
32 sources = [ 32 sources = [
33 "toolbar_consumer.h", 33 "toolbar_consumer.h",
34 "toolbar_view_controller.h", 34 "toolbar_view_controller.h",
35 "toolbar_view_controller.mm", 35 "toolbar_view_controller.mm",
36 ] 36 ]
37 deps = [ 37 deps = [
38 ":toolbar_components_ui", 38 ":toolbar_components_ui",
39 "//base", 39 "//base",
40 "//ios/chrome/browser/ui", 40 "//ios/chrome/browser/ui",
41 "//ios/clean/chrome/browser/ui/animators",
42 "//ios/clean/chrome/browser/ui/commands", 41 "//ios/clean/chrome/browser/ui/commands",
43 "//ios/clean/chrome/browser/ui/tools", 42 "//ios/clean/chrome/browser/ui/tools",
43 "//ios/clean/chrome/browser/ui/transitions/animators",
44 "//ios/third_party/material_components_ios", 44 "//ios/third_party/material_components_ios",
45 ] 45 ]
46 libs = [ "UIKit.framework" ] 46 libs = [ "UIKit.framework" ]
47 configs += [ "//build/config/compiler:enable_arc" ] 47 configs += [ "//build/config/compiler:enable_arc" ]
48 } 48 }
49 49
50 source_set("toolbar_components_ui") { 50 source_set("toolbar_components_ui") {
51 sources = [ 51 sources = [
52 "toolbar_button+factory.h", 52 "toolbar_button+factory.h",
53 "toolbar_button+factory.mm", 53 "toolbar_button+factory.mm",
(...skipping 29 matching lines...) Expand all
83 "//ios/chrome/browser/web_state_list", 83 "//ios/chrome/browser/web_state_list",
84 "//ios/chrome/browser/web_state_list:test_support", 84 "//ios/chrome/browser/web_state_list:test_support",
85 "//ios/shared/chrome/browser/ui/toolbar:test_support", 85 "//ios/shared/chrome/browser/ui/toolbar:test_support",
86 "//ios/web", 86 "//ios/web",
87 "//ios/web/public/test/fakes", 87 "//ios/web/public/test/fakes",
88 "//testing/gtest", 88 "//testing/gtest",
89 "//third_party/ocmock", 89 "//third_party/ocmock",
90 ] 90 ]
91 configs += [ "//build/config/compiler:enable_arc" ] 91 configs += [ "//build/config/compiler:enable_arc" ]
92 } 92 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698