Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(46)

Side by Side Diff: ios/chrome/browser/tabs/BUILD.gn

Issue 2807843002: Refactor creation of SadTabView into a tab helper object (Closed)
Patch Set: Attempt to fix build dependency Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | ios/chrome/browser/tabs/tab.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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_model.h", 12 "tab_model.h",
13 "tab_model_list.h", 13 "tab_model_list.h",
14 "tab_model_observer.h", 14 "tab_model_observer.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/chrome/browser/web:sad_tab_tab_helper_delegate",
24 "//ios/net", 25 "//ios/net",
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",
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
90 "//ios/chrome/browser/ui:ui_internal", 91 "//ios/chrome/browser/ui:ui_internal",
91 "//ios/chrome/browser/ui/alert_coordinator", 92 "//ios/chrome/browser/ui/alert_coordinator",
92 "//ios/chrome/browser/ui/commands", 93 "//ios/chrome/browser/ui/commands",
93 "//ios/chrome/browser/ui/downloads", 94 "//ios/chrome/browser/ui/downloads",
94 "//ios/chrome/browser/ui/overscroll_actions", 95 "//ios/chrome/browser/ui/overscroll_actions",
95 "//ios/chrome/browser/ui/reader_mode", 96 "//ios/chrome/browser/ui/reader_mode",
96 "//ios/chrome/browser/ui/sad_tab", 97 "//ios/chrome/browser/ui/sad_tab",
97 "//ios/chrome/browser/ui/toolbar", 98 "//ios/chrome/browser/ui/toolbar",
98 "//ios/chrome/browser/ui/util", 99 "//ios/chrome/browser/ui/util",
99 "//ios/chrome/browser/web", 100 "//ios/chrome/browser/web",
101 "//ios/chrome/browser/web:sad_tab_tab_helper_delegate",
100 "//ios/chrome/browser/web:web_internal", 102 "//ios/chrome/browser/web:web_internal",
101 "//ios/net", 103 "//ios/net",
102 "//ios/public/provider/chrome/browser", 104 "//ios/public/provider/chrome/browser",
103 "//ios/public/provider/chrome/browser/native_app_launcher", 105 "//ios/public/provider/chrome/browser/native_app_launcher",
104 "//ios/shared/chrome/browser/tabs", 106 "//ios/shared/chrome/browser/tabs",
105 "//ios/web", 107 "//ios/web",
106 "//net", 108 "//net",
107 "//ui/base", 109 "//ui/base",
108 "//url", 110 "//url",
109 ] 111 ]
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after
209 ":tabs", 211 ":tabs",
210 ":tabs_internal", 212 ":tabs_internal",
211 "//base", 213 "//base",
212 "//ios/chrome/browser/browser_state:test_support", 214 "//ios/chrome/browser/browser_state:test_support",
213 "//ios/chrome/browser/sessions:test_support", 215 "//ios/chrome/browser/sessions:test_support",
214 "//ios/web:test_support", 216 "//ios/web:test_support",
215 "//testing/gtest", 217 "//testing/gtest",
216 ] 218 ]
217 configs += [ "//build/config/compiler:enable_arc" ] 219 configs += [ "//build/config/compiler:enable_arc" ]
218 } 220 }
OLDNEW
« no previous file with comments | « no previous file | ios/chrome/browser/tabs/tab.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698