| 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 "tab.h", | 8 "tab.h", |
| 8 "tab_delegate.h", | 9 "tab_delegate.h", |
| 9 "tab_dialog_delegate.h", | 10 "tab_dialog_delegate.h", |
| 10 "tab_headers_delegate.h", | 11 "tab_headers_delegate.h", |
| 11 "tab_model.h", | 12 "tab_model.h", |
| 12 "tab_model_list.h", | 13 "tab_model_list.h", |
| 13 "tab_model_observer.h", | 14 "tab_model_observer.h", |
| 14 "tab_model_order_controller.h", | 15 "tab_model_order_controller.h", |
| 15 "tab_model_synced_window_delegate.h", | 16 "tab_model_synced_window_delegate.h", |
| 16 "tab_model_synced_window_delegate_getter.h", | 17 "tab_model_synced_window_delegate_getter.h", |
| (...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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.h", | |
| 120 "legacy_tab_helper.mm", | 120 "legacy_tab_helper.mm", |
| 121 "tab_model_list.mm", | 121 "tab_model_list.mm", |
| 122 ] | 122 ] |
| 123 deps = [ | 123 deps = [ |
| 124 ":tabs", | 124 ":tabs", |
| 125 "//base", | 125 "//base", |
| 126 "//ios/chrome/browser", | 126 "//ios/chrome/browser", |
| 127 "//ios/chrome/browser/browser_state", | 127 "//ios/chrome/browser/browser_state", |
| 128 "//ios/web", | 128 "//ios/web", |
| 129 ] | 129 ] |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 177 ":tabs", | 177 ":tabs", |
| 178 ":tabs_internal", | 178 ":tabs_internal", |
| 179 "//base", | 179 "//base", |
| 180 "//ios/chrome/browser/browser_state:test_support", | 180 "//ios/chrome/browser/browser_state:test_support", |
| 181 "//ios/chrome/browser/sessions:test_support", | 181 "//ios/chrome/browser/sessions:test_support", |
| 182 "//ios/web:test_support", | 182 "//ios/web:test_support", |
| 183 "//testing/gtest", | 183 "//testing/gtest", |
| 184 ] | 184 ] |
| 185 configs += [ "//build/config/compiler:enable_arc" ] | 185 configs += [ "//build/config/compiler:enable_arc" ] |
| 186 } | 186 } |
| OLD | NEW |