| 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("tabs") { | 5 source_set("tabs") { |
| 6 sources = [ | 6 sources = [ |
| 7 "legacy_tab_helper.h", | 7 "legacy_tab_helper.h", |
| 8 "tab.h", | 8 "tab.h", |
| 9 "tab_delegate.h", | 9 "tab_delegate.h", |
| 10 "tab_dialog_delegate.h", | 10 "tab_dialog_delegate.h", |
| (...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 95 "//ios/chrome/browser/ui/overscroll_actions", | 95 "//ios/chrome/browser/ui/overscroll_actions", |
| 96 "//ios/chrome/browser/ui/reader_mode", | 96 "//ios/chrome/browser/ui/reader_mode", |
| 97 "//ios/chrome/browser/ui/sad_tab", | 97 "//ios/chrome/browser/ui/sad_tab", |
| 98 "//ios/chrome/browser/ui/toolbar", | 98 "//ios/chrome/browser/ui/toolbar", |
| 99 "//ios/chrome/browser/ui/util", | 99 "//ios/chrome/browser/ui/util", |
| 100 "//ios/chrome/browser/web", | 100 "//ios/chrome/browser/web", |
| 101 "//ios/chrome/browser/web:web_internal", | 101 "//ios/chrome/browser/web:web_internal", |
| 102 "//ios/net", | 102 "//ios/net", |
| 103 "//ios/public/provider/chrome/browser", | 103 "//ios/public/provider/chrome/browser", |
| 104 "//ios/public/provider/chrome/browser/native_app_launcher", | 104 "//ios/public/provider/chrome/browser/native_app_launcher", |
| 105 "//ios/shared/chrome/browser/tabs", |
| 105 "//ios/web", | 106 "//ios/web", |
| 106 "//net", | 107 "//net", |
| 107 "//ui/base", | 108 "//ui/base", |
| 108 "//url", | 109 "//url", |
| 109 ] | 110 ] |
| 110 allow_circular_includes_from = [ ":tabs_internal_arc" ] | 111 allow_circular_includes_from = [ ":tabs_internal_arc" ] |
| 111 libs = [ | 112 libs = [ |
| 112 "CoreLocation.framework", | 113 "CoreLocation.framework", |
| 113 "UIKit.framework", | 114 "UIKit.framework", |
| 114 ] | 115 ] |
| 115 } | 116 } |
| 116 | 117 |
| 117 source_set("tabs_internal_arc") { | 118 source_set("tabs_internal_arc") { |
| 118 sources = [ | 119 sources = [ |
| 119 "legacy_tab_helper.mm", | 120 "legacy_tab_helper.mm", |
| 120 "tab_model_list.mm", | 121 "tab_model_list.mm", |
| 121 "tab_model_observers.h", | 122 "tab_model_observers.h", |
| 122 "tab_model_observers.mm", | 123 "tab_model_observers.mm", |
| 123 "tab_model_order_controller.mm", | 124 "tab_model_order_controller.mm", |
| 124 ] | 125 ] |
| 125 deps = [ | 126 deps = [ |
| 126 ":tabs", | 127 ":tabs", |
| 127 "//base", | 128 "//base", |
| 128 "//ios/chrome/browser", | 129 "//ios/chrome/browser", |
| 129 "//ios/chrome/browser/browser_state", | 130 "//ios/chrome/browser/browser_state", |
| 131 "//ios/shared/chrome/browser/tabs", |
| 130 "//ios/web", | 132 "//ios/web", |
| 131 ] | 133 ] |
| 132 libs = [ "Foundation.framework" ] | 134 libs = [ "Foundation.framework" ] |
| 133 configs += [ "//build/config/compiler:enable_arc" ] | 135 configs += [ "//build/config/compiler:enable_arc" ] |
| 134 } | 136 } |
| 135 | 137 |
| 136 source_set("unit_tests") { | 138 source_set("unit_tests") { |
| 137 testonly = true | 139 testonly = true |
| 138 sources = [ | 140 sources = [ |
| 139 "tab_model_order_controller_unittest.mm", | 141 "tab_model_order_controller_unittest.mm", |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 179 ":tabs", | 181 ":tabs", |
| 180 ":tabs_internal", | 182 ":tabs_internal", |
| 181 "//base", | 183 "//base", |
| 182 "//ios/chrome/browser/browser_state:test_support", | 184 "//ios/chrome/browser/browser_state:test_support", |
| 183 "//ios/chrome/browser/sessions:test_support", | 185 "//ios/chrome/browser/sessions:test_support", |
| 184 "//ios/web:test_support", | 186 "//ios/web:test_support", |
| 185 "//testing/gtest", | 187 "//testing/gtest", |
| 186 ] | 188 ] |
| 187 configs += [ "//build/config/compiler:enable_arc" ] | 189 configs += [ "//build/config/compiler:enable_arc" ] |
| 188 } | 190 } |
| OLD | NEW |