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

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

Issue 2684073002: Extract TabModelObservers from tab_model.mm to its own file. (Closed)
Patch Set: Rebase and address comment. 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
« no previous file with comments | « no previous file | ios/chrome/browser/tabs/tab_model.mm » ('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",
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after
112 libs = [ 112 libs = [
113 "CoreLocation.framework", 113 "CoreLocation.framework",
114 "UIKit.framework", 114 "UIKit.framework",
115 ] 115 ]
116 } 116 }
117 117
118 source_set("tabs_internal_arc") { 118 source_set("tabs_internal_arc") {
119 sources = [ 119 sources = [
120 "legacy_tab_helper.mm", 120 "legacy_tab_helper.mm",
121 "tab_model_list.mm", 121 "tab_model_list.mm",
122 "tab_model_observers.h",
123 "tab_model_observers.mm",
122 ] 124 ]
123 deps = [ 125 deps = [
124 ":tabs", 126 ":tabs",
125 "//base", 127 "//base",
126 "//ios/chrome/browser", 128 "//ios/chrome/browser",
127 "//ios/chrome/browser/browser_state", 129 "//ios/chrome/browser/browser_state",
128 "//ios/web", 130 "//ios/web",
129 ] 131 ]
130 libs = [ "Foundation.framework" ] 132 libs = [ "Foundation.framework" ]
131 configs += [ "//build/config/compiler:enable_arc" ] 133 configs += [ "//build/config/compiler:enable_arc" ]
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
177 ":tabs", 179 ":tabs",
178 ":tabs_internal", 180 ":tabs_internal",
179 "//base", 181 "//base",
180 "//ios/chrome/browser/browser_state:test_support", 182 "//ios/chrome/browser/browser_state:test_support",
181 "//ios/chrome/browser/sessions:test_support", 183 "//ios/chrome/browser/sessions:test_support",
182 "//ios/web:test_support", 184 "//ios/web:test_support",
183 "//testing/gtest", 185 "//testing/gtest",
184 ] 186 ]
185 configs += [ "//build/config/compiler:enable_arc" ] 187 configs += [ "//build/config/compiler:enable_arc" ]
186 } 188 }
OLDNEW
« no previous file with comments | « no previous file | ios/chrome/browser/tabs/tab_model.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698