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

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

Issue 2798833003: [ios clean] Updates all BrowserCoordinator to the new rule (Closed)
Patch Set: Fix unittests 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/coordinator_context",
22 "//ios/shared/chrome/browser/ui/browser_list", 21 "//ios/shared/chrome/browser/ui/browser_list",
23 "//ios/shared/chrome/browser/ui/commands", 22 "//ios/shared/chrome/browser/ui/commands",
24 "//ios/shared/chrome/browser/ui/coordinators", 23 "//ios/shared/chrome/browser/ui/coordinators",
25 "//ios/web", 24 "//ios/web",
26 ] 25 ]
27 } 26 }
28 27
29 source_set("toolbar_ui") { 28 source_set("toolbar_ui") {
30 sources = [ 29 sources = [
31 "toolbar_consumer.h", 30 "toolbar_consumer.h",
(...skipping 21 matching lines...) Expand all
53 "toolbar_component_options.h", 52 "toolbar_component_options.h",
54 ] 53 ]
55 deps = [ 54 deps = [
56 "//base", 55 "//base",
57 "//ios/chrome/app/theme", 56 "//ios/chrome/app/theme",
58 "//ios/chrome/browser/ui", 57 "//ios/chrome/browser/ui",
59 ] 58 ]
60 libs = [ "UIKit.framework" ] 59 libs = [ "UIKit.framework" ]
61 configs += [ "//build/config/compiler:enable_arc" ] 60 configs += [ "//build/config/compiler:enable_arc" ]
62 } 61 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698