| 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 15 matching lines...) Expand all Loading... |
| 26 "//ios/web", | 26 "//ios/web", |
| 27 "//ui/base", | 27 "//ui/base", |
| 28 ] | 28 ] |
| 29 libs = [ "UIKit.framework" ] | 29 libs = [ "UIKit.framework" ] |
| 30 } | 30 } |
| 31 | 31 |
| 32 source_set("tabs_internal") { | 32 source_set("tabs_internal") { |
| 33 sources = [ | 33 sources = [ |
| 34 "tab.mm", | 34 "tab.mm", |
| 35 "tab_model.mm", | 35 "tab_model.mm", |
| 36 "tab_model_order_controller.mm", | |
| 37 "tab_model_synced_window_delegate.mm", | 36 "tab_model_synced_window_delegate.mm", |
| 38 "tab_model_synced_window_delegate_getter.mm", | 37 "tab_model_synced_window_delegate_getter.mm", |
| 39 ] | 38 ] |
| 40 deps = [ | 39 deps = [ |
| 41 ":tabs", | 40 ":tabs", |
| 42 ":tabs_internal_arc", | 41 ":tabs_internal_arc", |
| 43 "//base", | 42 "//base", |
| 44 "//components/content_settings/core/browser", | 43 "//components/content_settings/core/browser", |
| 45 "//components/favicon/core", | 44 "//components/favicon/core", |
| 46 "//components/favicon/ios", | 45 "//components/favicon/ios", |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 114 "UIKit.framework", | 113 "UIKit.framework", |
| 115 ] | 114 ] |
| 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", |
| 123 "tab_model_order_controller.mm", |
| 124 ] | 124 ] |
| 125 deps = [ | 125 deps = [ |
| 126 ":tabs", | 126 ":tabs", |
| 127 "//base", | 127 "//base", |
| 128 "//ios/chrome/browser", | 128 "//ios/chrome/browser", |
| 129 "//ios/chrome/browser/browser_state", | 129 "//ios/chrome/browser/browser_state", |
| 130 "//ios/web", | 130 "//ios/web", |
| 131 ] | 131 ] |
| 132 libs = [ "Foundation.framework" ] | 132 libs = [ "Foundation.framework" ] |
| 133 configs += [ "//build/config/compiler:enable_arc" ] | 133 configs += [ "//build/config/compiler:enable_arc" ] |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 179 ":tabs", | 179 ":tabs", |
| 180 ":tabs_internal", | 180 ":tabs_internal", |
| 181 "//base", | 181 "//base", |
| 182 "//ios/chrome/browser/browser_state:test_support", | 182 "//ios/chrome/browser/browser_state:test_support", |
| 183 "//ios/chrome/browser/sessions:test_support", | 183 "//ios/chrome/browser/sessions:test_support", |
| 184 "//ios/web:test_support", | 184 "//ios/web:test_support", |
| 185 "//testing/gtest", | 185 "//testing/gtest", |
| 186 ] | 186 ] |
| 187 configs += [ "//build/config/compiler:enable_arc" ] | 187 configs += [ "//build/config/compiler:enable_arc" ] |
| 188 } | 188 } |
| OLD | NEW |