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

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

Issue 2789433006: Implement request mobile site. (Closed)
Patch Set: Fix failing eg tests on iPad. 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_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 deps = [ 21 deps = [
22 "//components/sessions", 22 "//components/sessions",
23 "//components/signin/ios/browser", 23 "//components/signin/ios/browser",
24 "//components/sync_sessions", 24 "//components/sync_sessions",
25 "//ios/net", 25 "//ios/net",
26 "//ios/web", 26 "//ios/web",
27 "//ios/web:user_agent",
27 "//ui/base", 28 "//ui/base",
28 ] 29 ]
29 libs = [ "UIKit.framework" ] 30 libs = [ "UIKit.framework" ]
30 } 31 }
31 32
32 source_set("tabs_internal") { 33 source_set("tabs_internal") {
33 sources = [ 34 sources = [
34 "tab.h", 35 "tab.h",
35 "tab.mm", 36 "tab.mm",
36 "tab_model.mm", 37 "tab_model.mm",
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
98 "//ios/chrome/browser/ui/sad_tab", 99 "//ios/chrome/browser/ui/sad_tab",
99 "//ios/chrome/browser/ui/toolbar", 100 "//ios/chrome/browser/ui/toolbar",
100 "//ios/chrome/browser/ui/util", 101 "//ios/chrome/browser/ui/util",
101 "//ios/chrome/browser/web", 102 "//ios/chrome/browser/web",
102 "//ios/chrome/browser/web:web_internal", 103 "//ios/chrome/browser/web:web_internal",
103 "//ios/chrome/browser/web_state_list", 104 "//ios/chrome/browser/web_state_list",
104 "//ios/net", 105 "//ios/net",
105 "//ios/public/provider/chrome/browser", 106 "//ios/public/provider/chrome/browser",
106 "//ios/public/provider/chrome/browser/native_app_launcher", 107 "//ios/public/provider/chrome/browser/native_app_launcher",
107 "//ios/web", 108 "//ios/web",
109 "//ios/web:user_agent",
108 "//net", 110 "//net",
109 "//ui/base", 111 "//ui/base",
110 "//url", 112 "//url",
111 ] 113 ]
112 allow_circular_includes_from = [ ":tabs_internal_arc" ] 114 allow_circular_includes_from = [ ":tabs_internal_arc" ]
113 libs = [ 115 libs = [
114 "CoreLocation.framework", 116 "CoreLocation.framework",
115 "UIKit.framework", 117 "UIKit.framework",
116 ] 118 ]
117 } 119 }
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after
215 ":tabs", 217 ":tabs",
216 ":tabs_internal", 218 ":tabs_internal",
217 "//base", 219 "//base",
218 "//ios/chrome/browser/browser_state:test_support", 220 "//ios/chrome/browser/browser_state:test_support",
219 "//ios/chrome/browser/sessions:test_support", 221 "//ios/chrome/browser/sessions:test_support",
220 "//ios/web:test_support", 222 "//ios/web:test_support",
221 "//testing/gtest", 223 "//testing/gtest",
222 ] 224 ]
223 configs += [ "//build/config/compiler:enable_arc" ] 225 configs += [ "//build/config/compiler:enable_arc" ]
224 } 226 }
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