| 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") { | 5 source_set("tab") { |
| 6 sources = [ | 6 sources = [ |
| 7 "tab_coordinator.h", | 7 "tab_coordinator.h", |
| 8 "tab_coordinator.mm", | 8 "tab_coordinator.mm", |
| 9 ] | 9 ] |
| 10 | 10 |
| 11 configs += [ "//build/config/compiler:enable_arc" ] | 11 configs += [ "//build/config/compiler:enable_arc" ] |
| 12 | 12 |
| 13 deps = [ | 13 deps = [ |
| 14 ":tab_ui", | 14 ":tab_ui", |
| 15 "//base", | 15 "//base", |
| 16 "//ios/chrome/browser", | 16 "//ios/chrome/browser", |
| 17 "//ios/clean/chrome/browser/ui/actions", | 17 "//ios/clean/chrome/browser/ui/actions", |
| 18 "//ios/clean/chrome/browser/ui/animators", | |
| 19 "//ios/clean/chrome/browser/ui/commands", | 18 "//ios/clean/chrome/browser/ui/commands", |
| 20 "//ios/clean/chrome/browser/ui/find_in_page", | 19 "//ios/clean/chrome/browser/ui/find_in_page", |
| 21 "//ios/clean/chrome/browser/ui/ntp", | 20 "//ios/clean/chrome/browser/ui/ntp", |
| 22 "//ios/clean/chrome/browser/ui/tab_strip", | 21 "//ios/clean/chrome/browser/ui/tab_strip", |
| 23 "//ios/clean/chrome/browser/ui/toolbar", | 22 "//ios/clean/chrome/browser/ui/toolbar", |
| 23 "//ios/clean/chrome/browser/ui/transitions", |
| 24 "//ios/clean/chrome/browser/ui/web_contents", | 24 "//ios/clean/chrome/browser/ui/web_contents", |
| 25 "//ios/shared/chrome/browser/ui/broadcaster", | 25 "//ios/shared/chrome/browser/ui/broadcaster", |
| 26 "//ios/shared/chrome/browser/ui/browser_list", | 26 "//ios/shared/chrome/browser/ui/browser_list", |
| 27 "//ios/shared/chrome/browser/ui/commands", | 27 "//ios/shared/chrome/browser/ui/commands", |
| 28 "//ios/shared/chrome/browser/ui/coordinators", | 28 "//ios/shared/chrome/browser/ui/coordinators", |
| 29 "//ios/web", | 29 "//ios/web", |
| 30 ] | 30 ] |
| 31 } | 31 } |
| 32 | 32 |
| 33 source_set("tab_ui") { | 33 source_set("tab_ui") { |
| 34 sources = [ | 34 sources = [ |
| 35 "tab_container_view_controller.h", | 35 "tab_container_view_controller.h", |
| 36 "tab_container_view_controller.mm", | 36 "tab_container_view_controller.mm", |
| 37 ] | 37 ] |
| 38 deps = [ | 38 deps = [ |
| 39 "//ios/clean/chrome/browser/ui", | 39 "//ios/clean/chrome/browser/ui", |
| 40 "//ios/clean/chrome/browser/ui/animators", | 40 "//ios/clean/chrome/browser/ui/transitions/animators", |
| 41 "//ios/clean/chrome/browser/ui/presenters", | 41 "//ios/clean/chrome/browser/ui/transitions/presenters", |
| 42 ] | 42 ] |
| 43 libs = [ "UIKit.framework" ] | 43 libs = [ "UIKit.framework" ] |
| 44 configs += [ "//build/config/compiler:enable_arc" ] | 44 configs += [ "//build/config/compiler:enable_arc" ] |
| 45 } | 45 } |
| 46 | 46 |
| 47 source_set("unit_tests") { | 47 source_set("unit_tests") { |
| 48 testonly = true | 48 testonly = true |
| 49 | 49 |
| 50 sources = [ | 50 sources = [ |
| 51 "tab_coordinator_unittest.mm", | 51 "tab_coordinator_unittest.mm", |
| 52 ] | 52 ] |
| 53 | 53 |
| 54 configs += [ "//build/config/compiler:enable_arc" ] | 54 configs += [ "//build/config/compiler:enable_arc" ] |
| 55 | 55 |
| 56 deps = [ | 56 deps = [ |
| 57 ":tab", | 57 ":tab", |
| 58 ":tab_ui", | 58 ":tab_ui", |
| 59 "//base", | 59 "//base", |
| 60 "//ios/shared/chrome/browser/ui/browser_list", | 60 "//ios/shared/chrome/browser/ui/browser_list", |
| 61 "//ios/shared/chrome/browser/ui/coordinators", | 61 "//ios/shared/chrome/browser/ui/coordinators", |
| 62 "//ios/shared/chrome/browser/ui/coordinators:test_support", | 62 "//ios/shared/chrome/browser/ui/coordinators:test_support", |
| 63 "//ios/shared/chrome/browser/ui/toolbar:test_support", | 63 "//ios/shared/chrome/browser/ui/toolbar:test_support", |
| 64 "//ios/web/public/test", | 64 "//ios/web/public/test", |
| 65 "//testing/gtest", | 65 "//testing/gtest", |
| 66 ] | 66 ] |
| 67 } | 67 } |
| OLD | NEW |