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 = [ |
11 ":tab_collection_ui", | 11 ":tab_collection_ui", |
12 "//base", | 12 "//base", |
| 13 "//ios/chrome/browser/snapshots", |
13 "//ios/chrome/browser/web", | 14 "//ios/chrome/browser/web", |
14 "//ios/chrome/browser/web_state_list", | 15 "//ios/chrome/browser/web_state_list", |
15 "//ios/web", | 16 "//ios/web", |
| 17 "//ui/gfx", |
16 ] | 18 ] |
17 configs += [ "//build/config/compiler:enable_arc" ] | 19 configs += [ "//build/config/compiler:enable_arc" ] |
18 } | 20 } |
19 | 21 |
20 source_set("tab_collection_ui") { | 22 source_set("tab_collection_ui") { |
21 sources = [ | 23 sources = [ |
22 "tab_collection_consumer.h", | 24 "tab_collection_consumer.h", |
23 "tab_collection_item.h", | 25 "tab_collection_item.h", |
24 "tab_collection_item.mm", | 26 "tab_collection_item.mm", |
25 "tab_collection_tab_cell.h", | 27 "tab_collection_tab_cell.h", |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
59 "//ios/chrome/test/base", | 61 "//ios/chrome/test/base", |
60 "//ios/web/public/test/fakes", | 62 "//ios/web/public/test/fakes", |
61 "//testing/gtest", | 63 "//testing/gtest", |
62 "//third_party/ocmock", | 64 "//third_party/ocmock", |
63 "//ui/base:test_support", | 65 "//ui/base:test_support", |
64 "//url:url", | 66 "//url:url", |
65 ] | 67 ] |
66 configs += [ "//build/config/compiler:enable_arc" ] | 68 configs += [ "//build/config/compiler:enable_arc" ] |
67 testonly = true | 69 testonly = true |
68 } | 70 } |
OLD | NEW |