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", |
11 "tab_headers_delegate.h", | 11 "tab_headers_delegate.h", |
12 "tab_helper_util.h", | 12 "tab_helper_util.h", |
13 "tab_model.h", | 13 "tab_model.h", |
14 "tab_model_list.h", | 14 "tab_model_list.h", |
15 "tab_model_observer.h", | 15 "tab_model_observer.h", |
16 "tab_model_synced_window_delegate.h", | 16 "tab_model_synced_window_delegate.h", |
17 "tab_model_synced_window_delegate_getter.h", | 17 "tab_model_synced_window_delegate_getter.h", |
18 "tab_private.h", | 18 "tab_private.h", |
19 "tab_snapshotting_delegate.h", | 19 "tab_snapshotting_delegate.h", |
20 ] | 20 ] |
| 21 public_deps = [ |
| 22 "//ios/web", |
| 23 ] |
21 deps = [ | 24 deps = [ |
22 "//components/sessions", | 25 "//components/sessions", |
23 "//components/signin/ios/browser", | 26 "//components/signin/ios/browser", |
24 "//components/sync_sessions", | 27 "//components/sync_sessions", |
25 "//ios/chrome/browser/web:sad_tab_tab_helper_delegate", | 28 "//ios/chrome/browser/web:sad_tab_tab_helper_delegate", |
26 "//ios/net", | 29 "//ios/net", |
27 "//ios/web", | |
28 "//ios/web:user_agent", | 30 "//ios/web:user_agent", |
29 "//ui/base", | 31 "//ui/base", |
30 ] | 32 ] |
31 libs = [ "UIKit.framework" ] | 33 libs = [ "UIKit.framework" ] |
32 } | 34 } |
33 | 35 |
34 source_set("tabs_internal") { | 36 source_set("tabs_internal") { |
35 sources = [ | 37 sources = [ |
36 "tab.h", | 38 "tab.h", |
37 "tab.mm", | 39 "tab.mm", |
(...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
220 ":tabs", | 222 ":tabs", |
221 ":tabs_internal", | 223 ":tabs_internal", |
222 "//base", | 224 "//base", |
223 "//ios/chrome/browser/browser_state:test_support", | 225 "//ios/chrome/browser/browser_state:test_support", |
224 "//ios/chrome/browser/sessions:test_support", | 226 "//ios/chrome/browser/sessions:test_support", |
225 "//ios/web:test_support", | 227 "//ios/web:test_support", |
226 "//testing/gtest", | 228 "//testing/gtest", |
227 ] | 229 ] |
228 configs += [ "//build/config/compiler:enable_arc" ] | 230 configs += [ "//build/config/compiler:enable_arc" ] |
229 } | 231 } |
OLD | NEW |