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 27 matching lines...) Expand all Loading... |
38 "tab_collection_mediator_unittest.mm", | 38 "tab_collection_mediator_unittest.mm", |
39 ] | 39 ] |
40 deps = [ | 40 deps = [ |
41 ":tab_collection", | 41 ":tab_collection", |
42 ":tab_collection_ui", | 42 ":tab_collection_ui", |
43 "//base", | 43 "//base", |
44 "//base/test:test_support", | 44 "//base/test:test_support", |
45 "//ios/chrome/browser/web_state_list", | 45 "//ios/chrome/browser/web_state_list", |
46 "//ios/chrome/browser/web_state_list:test_support", | 46 "//ios/chrome/browser/web_state_list:test_support", |
47 "//ios/chrome/test/base", | 47 "//ios/chrome/test/base", |
48 "//ios/web:test_support", | 48 "//ios/web/public/test/fakes:test_support", |
49 "//testing/gtest", | 49 "//testing/gtest", |
50 "//third_party/ocmock", | 50 "//third_party/ocmock", |
51 "//url:url", | 51 "//url:url", |
52 ] | 52 ] |
53 configs += [ "//build/config/compiler:enable_arc" ] | 53 configs += [ "//build/config/compiler:enable_arc" ] |
54 testonly = true | 54 testonly = true |
55 } | 55 } |
OLD | NEW |