| 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 "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 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 135 "//ios/shared/chrome/browser/tabs", | 135 "//ios/shared/chrome/browser/tabs", |
| 136 "//ios/web", | 136 "//ios/web", |
| 137 ] | 137 ] |
| 138 libs = [ "Foundation.framework" ] | 138 libs = [ "Foundation.framework" ] |
| 139 configs += [ "//build/config/compiler:enable_arc" ] | 139 configs += [ "//build/config/compiler:enable_arc" ] |
| 140 } | 140 } |
| 141 | 141 |
| 142 source_set("unit_tests") { | 142 source_set("unit_tests") { |
| 143 testonly = true | 143 testonly = true |
| 144 sources = [ | 144 sources = [ |
| 145 "tab_model_order_controller_unittest.mm", | |
| 146 "tab_model_unittest.mm", | 145 "tab_model_unittest.mm", |
| 147 "tab_unittest.mm", | 146 "tab_unittest.mm", |
| 148 ] | 147 ] |
| 149 deps = [ | 148 deps = [ |
| 150 ":tabs", | 149 ":tabs", |
| 151 ":tabs_internal", | 150 ":tabs_internal", |
| 152 ":unit_tests_arc", | 151 ":unit_tests_arc", |
| 153 "//base", | 152 "//base", |
| 154 "//components/bookmarks/test", | 153 "//components/bookmarks/test", |
| 155 "//components/history/core/browser", | 154 "//components/history/core/browser", |
| (...skipping 29 matching lines...) Expand all Loading... |
| 185 ":tabs", | 184 ":tabs", |
| 186 ":tabs_internal", | 185 ":tabs_internal", |
| 187 "//base", | 186 "//base", |
| 188 "//ios/chrome/browser/browser_state:test_support", | 187 "//ios/chrome/browser/browser_state:test_support", |
| 189 "//ios/chrome/browser/sessions:test_support", | 188 "//ios/chrome/browser/sessions:test_support", |
| 190 "//ios/web:test_support", | 189 "//ios/web:test_support", |
| 191 "//testing/gtest", | 190 "//testing/gtest", |
| 192 ] | 191 ] |
| 193 configs += [ "//build/config/compiler:enable_arc" ] | 192 configs += [ "//build/config/compiler:enable_arc" ] |
| 194 } | 193 } |
| OLD | NEW |