OLD | NEW |
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/commands", |
14 "//ios/clean/chrome/browser/ui/tab_collection", | 14 "//ios/clean/chrome/browser/ui/tab_collection", |
15 "//ios/shared/chrome/browser/coordinator_context", | |
16 "//ios/shared/chrome/browser/tabs", | 15 "//ios/shared/chrome/browser/tabs", |
17 "//ios/shared/chrome/browser/ui/browser_list", | 16 "//ios/shared/chrome/browser/ui/browser_list", |
18 "//ios/shared/chrome/browser/ui/commands", | 17 "//ios/shared/chrome/browser/ui/commands", |
19 "//ios/shared/chrome/browser/ui/coordinators", | 18 "//ios/shared/chrome/browser/ui/coordinators", |
20 "//ios/web", | 19 "//ios/web", |
21 ] | 20 ] |
22 configs += [ "//build/config/compiler:enable_arc" ] | 21 configs += [ "//build/config/compiler:enable_arc" ] |
23 } | 22 } |
24 | 23 |
25 source_set("tab_strip_ui") { | 24 source_set("tab_strip_ui") { |
26 sources = [ | 25 sources = [ |
27 "tab_strip_toolbar.h", | 26 "tab_strip_toolbar.h", |
28 "tab_strip_toolbar.mm", | 27 "tab_strip_toolbar.mm", |
29 "tab_strip_view_controller.h", | 28 "tab_strip_view_controller.h", |
30 "tab_strip_view_controller.mm", | 29 "tab_strip_view_controller.mm", |
31 ] | 30 ] |
32 deps = [ | 31 deps = [ |
33 "//ios/chrome/browser/ui/icons", | 32 "//ios/chrome/browser/ui/icons", |
34 "//ios/clean/chrome/browser/ui/actions", | 33 "//ios/clean/chrome/browser/ui/actions", |
35 "//ios/clean/chrome/browser/ui/commands", | 34 "//ios/clean/chrome/browser/ui/commands", |
36 "//ios/clean/chrome/browser/ui/tab_collection:tab_collection_ui", | 35 "//ios/clean/chrome/browser/ui/tab_collection:tab_collection_ui", |
37 "//ios/shared/chrome/browser/ui/commands", | 36 "//ios/shared/chrome/browser/ui/commands", |
38 ] | 37 ] |
39 configs += [ "//build/config/compiler:enable_arc" ] | 38 configs += [ "//build/config/compiler:enable_arc" ] |
40 } | 39 } |
OLD | NEW |