| 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 ] | 19 ] |
| 20 deps = [ | 20 deps = [ |
| 21 "//components/sessions", | 21 "//components/sessions", |
| 22 "//components/signin/ios/browser", | 22 "//components/signin/ios/browser", |
| 23 "//components/sync_sessions", | 23 "//components/sync_sessions", |
| 24 "//ios/net", | 24 "//ios/net", |
| 25 "//ios/shared/chrome/browser/tabs", |
| 25 "//ios/web", | 26 "//ios/web", |
| 26 "//ui/base", | 27 "//ui/base", |
| 27 ] | 28 ] |
| 28 libs = [ "UIKit.framework" ] | 29 libs = [ "UIKit.framework" ] |
| 29 } | 30 } |
| 30 | 31 |
| 31 source_set("tabs_internal") { | 32 source_set("tabs_internal") { |
| 32 sources = [ | 33 sources = [ |
| 33 "tab.mm", | 34 "tab.mm", |
| 34 "tab_model.mm", | 35 "tab_model.mm", |
| (...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 174 ":tabs", | 175 ":tabs", |
| 175 ":tabs_internal", | 176 ":tabs_internal", |
| 176 "//base", | 177 "//base", |
| 177 "//ios/chrome/browser/browser_state:test_support", | 178 "//ios/chrome/browser/browser_state:test_support", |
| 178 "//ios/chrome/browser/sessions:test_support", | 179 "//ios/chrome/browser/sessions:test_support", |
| 179 "//ios/web:test_support", | 180 "//ios/web:test_support", |
| 180 "//testing/gtest", | 181 "//testing/gtest", |
| 181 ] | 182 ] |
| 182 configs += [ "//build/config/compiler:enable_arc" ] | 183 configs += [ "//build/config/compiler:enable_arc" ] |
| 183 } | 184 } |
| OLD | NEW |