sczs | 4bce11c | 2018-03-19 15:48:08 | [diff] [blame] | 1 | # Copyright 2018 The Chromium Authors. All rights reserved. |
| 2 | # Use of this source code is governed by a BSD-style license that can be |
| 3 | # found in the LICENSE file. |
| 4 | |
| 5 | source_set("recent_tabs") { |
| 6 | configs += [ "//build/config/compiler:enable_arc" ] |
| 7 | sources = [ |
| 8 | "recent_tabs_coordinator.h", |
| 9 | "recent_tabs_coordinator.mm", |
| 10 | "recent_tabs_mediator.h", |
| 11 | "recent_tabs_mediator.mm", |
| 12 | ] |
| 13 | deps = [ |
sczs | 45496d2d | 2018-03-28 04:21:36 | [diff] [blame] | 14 | ":recent_tabs_ui", |
Chris Lu | dc1f132 | 2018-04-06 17:24:24 | [diff] [blame] | 15 | "resources:show_history", |
sczs | 4bce11c | 2018-03-19 15:48:08 | [diff] [blame] | 16 | "//base", |
| 17 | "//components/browser_sync", |
| 18 | "//components/sessions", |
| 19 | "//components/sync", |
| 20 | "//ios/chrome/app/strings", |
| 21 | "//ios/chrome/browser/browser_state", |
edchin | 8b2a569 | 2018-05-22 02:31:39 | [diff] [blame] | 22 | "//ios/chrome/browser/favicon:favicon", |
sczs | 4bce11c | 2018-03-19 15:48:08 | [diff] [blame] | 23 | "//ios/chrome/browser/sessions", |
| 24 | "//ios/chrome/browser/sync", |
edchin | f501456 | 2018-06-09 04:17:18 | [diff] [blame] | 25 | "//ios/chrome/browser/ui/commands", |
sczs | 4bce11c | 2018-03-19 15:48:08 | [diff] [blame] | 26 | "//ios/chrome/browser/ui/coordinators:chrome_coordinators", |
| 27 | "//ios/chrome/browser/ui/ntp", |
| 28 | "//ios/chrome/browser/ui/ntp/recent_tabs", |
| 29 | "//ios/chrome/browser/ui/table_view", |
| 30 | "//ios/chrome/browser/ui/util", |
| 31 | "//ui/base", |
| 32 | ] |
| 33 | allow_circular_includes_from = [ "//ios/chrome/browser/ui/ntp/recent_tabs" ] |
| 34 | } |
sczs | 45496d2d | 2018-03-28 04:21:36 | [diff] [blame] | 35 | |
| 36 | source_set("recent_tabs_ui") { |
| 37 | configs += [ "//build/config/compiler:enable_arc" ] |
| 38 | sources = [ |
edchin | 8b2a569 | 2018-05-22 02:31:39 | [diff] [blame] | 39 | "recent_tabs_image_data_source.h", |
sczs | 45496d2d | 2018-03-28 04:21:36 | [diff] [blame] | 40 | "recent_tabs_table_view_controller.h", |
| 41 | "recent_tabs_table_view_controller.mm", |
Rohit Rao | 2f83154 | 2018-03-28 18:02:00 | [diff] [blame] | 42 | "recent_tabs_transitioning_delegate.h", |
| 43 | "recent_tabs_transitioning_delegate.mm", |
sczs | 45496d2d | 2018-03-28 04:21:36 | [diff] [blame] | 44 | ] |
| 45 | deps = [ |
| 46 | "//base", |
| 47 | "//components/browser_sync", |
| 48 | "//components/sessions", |
| 49 | "//components/strings", |
| 50 | "//components/sync", |
| 51 | "//ios/chrome/app/strings", |
| 52 | "//ios/chrome/browser/browser_state", |
| 53 | "//ios/chrome/browser/metrics:metrics_internal", |
| 54 | "//ios/chrome/browser/sessions", |
| 55 | "//ios/chrome/browser/sync", |
| 56 | "//ios/chrome/browser/ui", |
| 57 | "//ios/chrome/browser/ui/authentication", |
| 58 | "//ios/chrome/browser/ui/authentication:authentication_ui", |
| 59 | "//ios/chrome/browser/ui/commands", |
| 60 | "//ios/chrome/browser/ui/context_menu", |
| 61 | "//ios/chrome/browser/ui/ntp/recent_tabs", |
| 62 | "//ios/chrome/browser/ui/settings/sync_utils", |
| 63 | "//ios/chrome/browser/ui/signin_interaction/public", |
| 64 | "//ios/chrome/browser/ui/table_view", |
Rohit Rao | 2f83154 | 2018-03-28 18:02:00 | [diff] [blame] | 65 | "//ios/chrome/browser/ui/table_view:presentation", |
sczs | 45496d2d | 2018-03-28 04:21:36 | [diff] [blame] | 66 | "//ios/chrome/browser/ui/util", |
Olivier Robin | e70e652 | 2018-06-26 12:36:12 | [diff] [blame^] | 67 | "//ios/chrome/common/favicon", |
sczs | 45496d2d | 2018-03-28 04:21:36 | [diff] [blame] | 68 | "//ui/base", |
| 69 | ] |
| 70 | } |