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