| 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 12 matching lines...) Expand all Loading... |
| 23 "//components/sync_sessions", | 23 "//components/sync_sessions", |
| 24 "//ios/net", | 24 "//ios/net", |
| 25 "//ios/web", | 25 "//ios/web", |
| 26 "//ui/base", | 26 "//ui/base", |
| 27 ] | 27 ] |
| 28 libs = [ "UIKit.framework" ] | 28 libs = [ "UIKit.framework" ] |
| 29 } | 29 } |
| 30 | 30 |
| 31 source_set("tabs_internal") { | 31 source_set("tabs_internal") { |
| 32 sources = [ | 32 sources = [ |
| 33 "tab.h", |
| 33 "tab.mm", | 34 "tab.mm", |
| 34 "tab_model.mm", | 35 "tab_model.mm", |
| 35 "tab_model_synced_window_delegate.mm", | 36 "tab_model_synced_window_delegate.mm", |
| 36 "tab_model_synced_window_delegate_getter.mm", | 37 "tab_model_synced_window_delegate_getter.mm", |
| 37 ] | 38 ] |
| 38 deps = [ | 39 deps = [ |
| 39 ":tabs", | 40 ":tabs", |
| 40 ":tabs_internal_arc", | 41 ":tabs_internal_arc", |
| 41 "//base", | 42 "//base", |
| 42 "//components/content_settings/core/browser", | 43 "//components/content_settings/core/browser", |
| (...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 209 ":tabs", | 210 ":tabs", |
| 210 ":tabs_internal", | 211 ":tabs_internal", |
| 211 "//base", | 212 "//base", |
| 212 "//ios/chrome/browser/browser_state:test_support", | 213 "//ios/chrome/browser/browser_state:test_support", |
| 213 "//ios/chrome/browser/sessions:test_support", | 214 "//ios/chrome/browser/sessions:test_support", |
| 214 "//ios/web:test_support", | 215 "//ios/web:test_support", |
| 215 "//testing/gtest", | 216 "//testing/gtest", |
| 216 ] | 217 ] |
| 217 configs += [ "//build/config/compiler:enable_arc" ] | 218 configs += [ "//build/config/compiler:enable_arc" ] |
| 218 } | 219 } |
| OLD | NEW |