OLD | NEW |
1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2017 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") { | 5 source_set("find_in_page") { |
6 sources = [ | 6 sources = [ |
7 "tab_coordinator.h", | 7 "find_in_page_coordinator.h", |
8 "tab_coordinator.mm", | 8 "find_in_page_coordinator.mm", |
| 9 "find_in_page_mediator.h", |
| 10 "find_in_page_mediator.mm", |
9 ] | 11 ] |
10 | 12 |
11 configs += [ "//build/config/compiler:enable_arc" ] | 13 configs += [ "//build/config/compiler:enable_arc" ] |
12 | 14 |
13 deps = [ | 15 deps = [ |
14 ":tab_ui", | 16 ":find_in_page_ui", |
15 "//base", | 17 "//base", |
16 "//ios/chrome/browser", | 18 "//ios/chrome/browser/find_in_page", |
| 19 "//ios/chrome/browser/web_state_list", |
| 20 "//ios/clean/chrome/browser", |
17 "//ios/clean/chrome/browser/ui/actions", | 21 "//ios/clean/chrome/browser/ui/actions", |
18 "//ios/clean/chrome/browser/ui/animators", | 22 "//ios/clean/chrome/browser/ui/animators", |
19 "//ios/clean/chrome/browser/ui/commands", | 23 "//ios/clean/chrome/browser/ui/commands", |
20 "//ios/clean/chrome/browser/ui/ntp", | |
21 "//ios/clean/chrome/browser/ui/tab_strip", | |
22 "//ios/clean/chrome/browser/ui/toolbar", | |
23 "//ios/clean/chrome/browser/ui/web_contents", | |
24 "//ios/shared/chrome/browser/ui/browser_list", | 24 "//ios/shared/chrome/browser/ui/browser_list", |
25 "//ios/shared/chrome/browser/ui/commands", | 25 "//ios/shared/chrome/browser/ui/commands", |
26 "//ios/shared/chrome/browser/ui/coordinators", | 26 "//ios/shared/chrome/browser/ui/coordinators", |
27 "//ios/web", | 27 "//ios/web", |
28 ] | 28 ] |
29 } | 29 } |
30 | 30 |
31 source_set("tab_ui") { | 31 source_set("find_in_page_ui") { |
32 sources = [ | 32 sources = [ |
33 "tab_container_view_controller.h", | 33 "find_in_page_consumer.h", |
34 "tab_container_view_controller.mm", | 34 "find_in_page_view_controller.h", |
| 35 "find_in_page_view_controller.mm", |
35 ] | 36 ] |
36 deps = [ | 37 deps = [ |
| 38 "//base", |
| 39 "//components/strings", |
| 40 "//ios/chrome/browser/ui/find_bar", |
37 "//ios/clean/chrome/browser/ui", | 41 "//ios/clean/chrome/browser/ui", |
| 42 "//ios/clean/chrome/browser/ui/actions", |
38 "//ios/clean/chrome/browser/ui/animators", | 43 "//ios/clean/chrome/browser/ui/animators", |
| 44 "//ios/clean/chrome/browser/ui/commands", |
39 "//ios/clean/chrome/browser/ui/presenters", | 45 "//ios/clean/chrome/browser/ui/presenters", |
| 46 "//ui/base", |
40 ] | 47 ] |
41 libs = [ "UIKit.framework" ] | 48 libs = [ "UIKit.framework" ] |
42 configs += [ "//build/config/compiler:enable_arc" ] | 49 configs += [ "//build/config/compiler:enable_arc" ] |
43 } | 50 } |
OLD | NEW |