| 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", |
| 11 "tab_headers_delegate.h", | 11 "tab_headers_delegate.h", |
| 12 "tab_model.h", | 12 "tab_model.h", |
| 13 "tab_model_list.h", | 13 "tab_model_list.h", |
| 14 "tab_model_observer.h", | 14 "tab_model_observer.h", |
| 15 "tab_model_order_controller.h", | |
| 16 "tab_model_synced_window_delegate.h", | 15 "tab_model_synced_window_delegate.h", |
| 17 "tab_model_synced_window_delegate_getter.h", | 16 "tab_model_synced_window_delegate_getter.h", |
| 18 "tab_private.h", | 17 "tab_private.h", |
| 19 "tab_snapshotting_delegate.h", | 18 "tab_snapshotting_delegate.h", |
| 20 ] | 19 ] |
| 21 deps = [ | 20 deps = [ |
| 22 "//components/sessions", | 21 "//components/sessions", |
| 23 "//components/signin/ios/browser", | 22 "//components/signin/ios/browser", |
| 24 "//components/sync_sessions", | 23 "//components/sync_sessions", |
| 25 "//ios/net", | 24 "//ios/net", |
| (...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 116 } | 115 } |
| 117 | 116 |
| 118 source_set("tabs_internal_arc") { | 117 source_set("tabs_internal_arc") { |
| 119 sources = [ | 118 sources = [ |
| 120 "legacy_tab_helper.mm", | 119 "legacy_tab_helper.mm", |
| 121 "tab_model_list.mm", | 120 "tab_model_list.mm", |
| 122 "tab_model_observers.h", | 121 "tab_model_observers.h", |
| 123 "tab_model_observers.mm", | 122 "tab_model_observers.mm", |
| 124 "tab_model_observers_bridge.h", | 123 "tab_model_observers_bridge.h", |
| 125 "tab_model_observers_bridge.mm", | 124 "tab_model_observers_bridge.mm", |
| 126 "tab_model_order_controller.mm", | 125 "tab_model_selected_tab_observer.h", |
| 126 "tab_model_selected_tab_observer.mm", |
| 127 "tab_parenting_observer.h", | 127 "tab_parenting_observer.h", |
| 128 "tab_parenting_observer.mm", | 128 "tab_parenting_observer.mm", |
| 129 ] | 129 ] |
| 130 deps = [ | 130 deps = [ |
| 131 ":tabs", | 131 ":tabs", |
| 132 "//base", | 132 "//base", |
| 133 "//ios/chrome/browser", | 133 "//ios/chrome/browser", |
| 134 "//ios/chrome/browser/browser_state", | 134 "//ios/chrome/browser/browser_state", |
| 135 "//ios/shared/chrome/browser/tabs", | 135 "//ios/shared/chrome/browser/tabs", |
| 136 "//ios/web", | 136 "//ios/web", |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 184 ":tabs", | 184 ":tabs", |
| 185 ":tabs_internal", | 185 ":tabs_internal", |
| 186 "//base", | 186 "//base", |
| 187 "//ios/chrome/browser/browser_state:test_support", | 187 "//ios/chrome/browser/browser_state:test_support", |
| 188 "//ios/chrome/browser/sessions:test_support", | 188 "//ios/chrome/browser/sessions:test_support", |
| 189 "//ios/web:test_support", | 189 "//ios/web:test_support", |
| 190 "//testing/gtest", | 190 "//testing/gtest", |
| 191 ] | 191 ] |
| 192 configs += [ "//build/config/compiler:enable_arc" ] | 192 configs += [ "//build/config/compiler:enable_arc" ] |
| 193 } | 193 } |
| OLD | NEW |