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 "tab.h", | 7 "tab.h", |
8 "tab_delegate.h", | 8 "tab_delegate.h", |
9 "tab_dialog_delegate.h", | 9 "tab_dialog_delegate.h", |
| 10 "tab_headers_delegate.h", |
10 "tab_model.h", | 11 "tab_model.h", |
11 "tab_model_list.h", | 12 "tab_model_list.h", |
12 "tab_model_observer.h", | 13 "tab_model_observer.h", |
13 "tab_model_order_controller.h", | 14 "tab_model_order_controller.h", |
14 "tab_model_synced_window_delegate.h", | 15 "tab_model_synced_window_delegate.h", |
15 "tab_model_synced_window_delegate_getter.h", | 16 "tab_model_synced_window_delegate_getter.h", |
16 "tab_private.h", | 17 "tab_private.h", |
17 "tab_snapshotting_delegate.h", | 18 "tab_snapshotting_delegate.h", |
18 ] | 19 ] |
19 deps = [ | 20 deps = [ |
(...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
174 ":tabs", | 175 ":tabs", |
175 ":tabs_internal", | 176 ":tabs_internal", |
176 "//base", | 177 "//base", |
177 "//ios/chrome/browser/browser_state:test_support", | 178 "//ios/chrome/browser/browser_state:test_support", |
178 "//ios/chrome/browser/sessions:test_support", | 179 "//ios/chrome/browser/sessions:test_support", |
179 "//ios/web:test_support", | 180 "//ios/web:test_support", |
180 "//testing/gtest", | 181 "//testing/gtest", |
181 ] | 182 ] |
182 configs += [ "//build/config/compiler:enable_arc" ] | 183 configs += [ "//build/config/compiler:enable_arc" ] |
183 } | 184 } |
OLD | NEW |