| 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 "tab.h", | 7 "tab.h", |
| 8 "tab_delegate.h", | 8 "tab_delegate.h", |
| 9 "tab_dialog_delegate.h", | 9 "tab_dialog_delegate.h", |
| 10 "tab_headers_delegate.h", | 10 "tab_headers_delegate.h", |
| 11 "tab_model.h", | 11 "tab_model.h", |
| 12 "tab_model_list.h", | 12 "tab_model_list.h", |
| 13 "tab_model_observer.h", | 13 "tab_model_observer.h", |
| 14 "tab_model_order_controller.h", | 14 "tab_model_order_controller.h", |
| 15 "tab_model_synced_window_delegate.h", | 15 "tab_model_synced_window_delegate.h", |
| 16 "tab_model_synced_window_delegate_getter.h", | 16 "tab_model_synced_window_delegate_getter.h", |
| 17 "tab_private.h", | 17 "tab_private.h", |
| 18 "tab_snapshotting_delegate.h", | 18 "tab_snapshotting_delegate.h", |
| 19 "web_state_handle.h", |
| 20 "web_state_list.h", |
| 19 ] | 21 ] |
| 20 deps = [ | 22 deps = [ |
| 21 "//components/sessions", | 23 "//components/sessions", |
| 22 "//components/signin/ios/browser", | 24 "//components/signin/ios/browser", |
| 23 "//components/sync_sessions", | 25 "//components/sync_sessions", |
| 24 "//ios/net", | 26 "//ios/net", |
| 25 "//ios/web", | 27 "//ios/web", |
| 26 "//ui/base", | 28 "//ui/base", |
| 27 ] | 29 ] |
| 28 libs = [ "UIKit.framework" ] | 30 libs = [ "UIKit.framework" ] |
| (...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 110 allow_circular_includes_from = [ ":tabs_internal_arc" ] | 112 allow_circular_includes_from = [ ":tabs_internal_arc" ] |
| 111 libs = [ | 113 libs = [ |
| 112 "CoreLocation.framework", | 114 "CoreLocation.framework", |
| 113 "UIKit.framework", | 115 "UIKit.framework", |
| 114 ] | 116 ] |
| 115 } | 117 } |
| 116 | 118 |
| 117 source_set("tabs_internal_arc") { | 119 source_set("tabs_internal_arc") { |
| 118 sources = [ | 120 sources = [ |
| 119 "tab_model_list.mm", | 121 "tab_model_list.mm", |
| 122 "web_state_list.mm", |
| 120 ] | 123 ] |
| 121 deps = [ | 124 deps = [ |
| 122 ":tabs", | 125 ":tabs", |
| 123 "//base", | 126 "//base", |
| 124 "//ios/chrome/browser", | 127 "//ios/chrome/browser", |
| 125 "//ios/chrome/browser/browser_state", | 128 "//ios/chrome/browser/browser_state", |
| 126 ] | 129 ] |
| 127 libs = [ "Foundation.framework" ] | 130 libs = [ "Foundation.framework" ] |
| 128 configs += [ "//build/config/compiler:enable_arc" ] | 131 configs += [ "//build/config/compiler:enable_arc" ] |
| 129 } | 132 } |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 174 ":tabs", | 177 ":tabs", |
| 175 ":tabs_internal", | 178 ":tabs_internal", |
| 176 "//base", | 179 "//base", |
| 177 "//ios/chrome/browser/browser_state:test_support", | 180 "//ios/chrome/browser/browser_state:test_support", |
| 178 "//ios/chrome/browser/sessions:test_support", | 181 "//ios/chrome/browser/sessions:test_support", |
| 179 "//ios/web:test_support", | 182 "//ios/web:test_support", |
| 180 "//testing/gtest", | 183 "//testing/gtest", |
| 181 ] | 184 ] |
| 182 configs += [ "//build/config/compiler:enable_arc" ] | 185 configs += [ "//build/config/compiler:enable_arc" ] |
| 183 } | 186 } |
| OLD | NEW |