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

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

Issue 2687303003: Convert some of TabModel logic to WebStateListObservers. (Closed)
Patch Set: Created 3 years, 10 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
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",
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after
113 libs = [ 113 libs = [
114 "CoreLocation.framework", 114 "CoreLocation.framework",
115 "UIKit.framework", 115 "UIKit.framework",
116 ] 116 ]
117 } 117 }
118 118
119 source_set("tabs_internal_arc") { 119 source_set("tabs_internal_arc") {
120 sources = [ 120 sources = [
121 "legacy_tab_helper.mm", 121 "legacy_tab_helper.mm",
122 "tab_model_list.mm", 122 "tab_model_list.mm",
123 "tab_model_metrics_observer.h",
124 "tab_model_metrics_observer.mm",
123 "tab_model_observers.h", 125 "tab_model_observers.h",
124 "tab_model_observers.mm", 126 "tab_model_observers.mm",
127 "tab_model_tab_model_observers_bridge.h",
128 "tab_model_tab_model_observers_bridge.mm",
129 "tab_model_tab_parenting_observer.h",
130 "tab_model_tab_parenting_observer.mm",
125 ] 131 ]
126 deps = [ 132 deps = [
127 ":tabs", 133 ":tabs",
128 "//base", 134 "//base",
129 "//ios/chrome/browser", 135 "//ios/chrome/browser",
130 "//ios/chrome/browser/browser_state", 136 "//ios/chrome/browser/browser_state",
131 "//ios/shared/chrome/browser/tabs", 137 "//ios/shared/chrome/browser/tabs",
132 "//ios/web", 138 "//ios/web",
133 ] 139 ]
134 libs = [ "Foundation.framework" ] 140 libs = [ "Foundation.framework" ]
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
181 ":tabs", 187 ":tabs",
182 ":tabs_internal", 188 ":tabs_internal",
183 "//base", 189 "//base",
184 "//ios/chrome/browser/browser_state:test_support", 190 "//ios/chrome/browser/browser_state:test_support",
185 "//ios/chrome/browser/sessions:test_support", 191 "//ios/chrome/browser/sessions:test_support",
186 "//ios/web:test_support", 192 "//ios/web:test_support",
187 "//testing/gtest", 193 "//testing/gtest",
188 ] 194 ]
189 configs += [ "//build/config/compiler:enable_arc" ] 195 configs += [ "//build/config/compiler:enable_arc" ]
190 } 196 }
OLDNEW
« no previous file with comments | « no previous file | ios/chrome/browser/tabs/tab_model.mm » ('j') | ios/chrome/browser/tabs/tab_model.mm » ('J')

Powered by Google App Engine
This is Rietveld 408576698