| 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("tab_collection") { | 5 source_set("tab_collection") { |
| 6 sources = [ | 6 sources = [ |
| 7 "tab_collection_mediator.h", | 7 "tab_collection_mediator.h", |
| 8 "tab_collection_mediator.mm", | 8 "tab_collection_mediator.mm", |
| 9 ] | 9 ] |
| 10 deps = [ | 10 deps = [ |
| (...skipping 29 matching lines...) Expand all Loading... |
| 40 "tab_collection_view_controller_unittest.mm", | 40 "tab_collection_view_controller_unittest.mm", |
| 41 ] | 41 ] |
| 42 deps = [ | 42 deps = [ |
| 43 ":tab_collection", | 43 ":tab_collection", |
| 44 ":tab_collection_ui", | 44 ":tab_collection_ui", |
| 45 "//base", | 45 "//base", |
| 46 "//base/test:test_support", | 46 "//base/test:test_support", |
| 47 "//ios/chrome/browser/web_state_list", | 47 "//ios/chrome/browser/web_state_list", |
| 48 "//ios/chrome/browser/web_state_list:test_support", | 48 "//ios/chrome/browser/web_state_list:test_support", |
| 49 "//ios/chrome/test/base", | 49 "//ios/chrome/test/base", |
| 50 "//ios/web:test_support", | 50 "//ios/web/public/test/fakes", |
| 51 "//testing/gtest", | 51 "//testing/gtest", |
| 52 "//third_party/ocmock", | 52 "//third_party/ocmock", |
| 53 "//url:url", | 53 "//url:url", |
| 54 ] | 54 ] |
| 55 configs += [ "//build/config/compiler:enable_arc" ] | 55 configs += [ "//build/config/compiler:enable_arc" ] |
| 56 testonly = true | 56 testonly = true |
| 57 } | 57 } |
| OLD | NEW |