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

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

Issue 2786893002: [ios] Dispatcher for tab_strip and tab_grid. (Closed)
Patch Set: Update showcase. 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("tab_strip") { 5 source_set("tab_strip") {
6 sources = [ 6 sources = [
7 "tab_strip_coordinator.h", 7 "tab_strip_coordinator.h",
8 "tab_strip_coordinator.mm", 8 "tab_strip_coordinator.mm",
9 ] 9 ]
10 deps = [ 10 deps = [
11 ":tab_strip_ui", 11 ":tab_strip_ui",
12 "//ios/chrome/browser/browser_state", 12 "//ios/chrome/browser/browser_state",
13 "//ios/clean/chrome/browser/ui/commands",
13 "//ios/clean/chrome/browser/ui/tab_collection", 14 "//ios/clean/chrome/browser/ui/tab_collection",
14 "//ios/shared/chrome/browser/coordinator_context", 15 "//ios/shared/chrome/browser/coordinator_context",
15 "//ios/shared/chrome/browser/tabs", 16 "//ios/shared/chrome/browser/tabs",
16 "//ios/shared/chrome/browser/ui/browser_list", 17 "//ios/shared/chrome/browser/ui/browser_list",
18 "//ios/shared/chrome/browser/ui/commands",
17 "//ios/shared/chrome/browser/ui/coordinators", 19 "//ios/shared/chrome/browser/ui/coordinators",
20 "//ios/web",
18 ] 21 ]
19 configs += [ "//build/config/compiler:enable_arc" ] 22 configs += [ "//build/config/compiler:enable_arc" ]
20 } 23 }
21 24
22 source_set("tab_strip_ui") { 25 source_set("tab_strip_ui") {
23 sources = [ 26 sources = [
24 "tab_strip_view_controller.h", 27 "tab_strip_view_controller.h",
25 "tab_strip_view_controller.mm", 28 "tab_strip_view_controller.mm",
26 ] 29 ]
27 deps = [ 30 deps = [
31 "//ios/clean/chrome/browser/ui/commands",
28 "//ios/clean/chrome/browser/ui/tab_collection:tab_collection_ui", 32 "//ios/clean/chrome/browser/ui/tab_collection:tab_collection_ui",
33 "//ios/shared/chrome/browser/ui/commands",
29 ] 34 ]
30 configs += [ "//build/config/compiler:enable_arc" ] 35 configs += [ "//build/config/compiler:enable_arc" ]
31 } 36 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698