| Index: ios/clean/chrome/browser/ui/find_in_page/BUILD.gn
|
| diff --git a/ios/clean/chrome/browser/ui/tab/BUILD.gn b/ios/clean/chrome/browser/ui/find_in_page/BUILD.gn
|
| similarity index 52%
|
| copy from ios/clean/chrome/browser/ui/tab/BUILD.gn
|
| copy to ios/clean/chrome/browser/ui/find_in_page/BUILD.gn
|
| index 63ca3f110cd191bcd7d25f29827551a2b93ee7ac..1274e30a27f48e1b55e0993c2240a0b14394796e 100644
|
| --- a/ios/clean/chrome/browser/ui/tab/BUILD.gn
|
| +++ b/ios/clean/chrome/browser/ui/find_in_page/BUILD.gn
|
| @@ -1,26 +1,26 @@
|
| -# Copyright 2016 The Chromium Authors. All rights reserved.
|
| +# Copyright 2017 The Chromium Authors. All rights reserved.
|
| # Use of this source code is governed by a BSD-style license that can be
|
| # found in the LICENSE file.
|
|
|
| -source_set("tab") {
|
| +source_set("find_in_page") {
|
| sources = [
|
| - "tab_coordinator.h",
|
| - "tab_coordinator.mm",
|
| + "find_in_page_coordinator.h",
|
| + "find_in_page_coordinator.mm",
|
| + "find_in_page_mediator.h",
|
| + "find_in_page_mediator.mm",
|
| ]
|
|
|
| configs += [ "//build/config/compiler:enable_arc" ]
|
|
|
| deps = [
|
| - ":tab_ui",
|
| + ":find_in_page_ui",
|
| "//base",
|
| - "//ios/chrome/browser",
|
| + "//ios/chrome/browser/find_in_page",
|
| + "//ios/chrome/browser/web_state_list",
|
| + "//ios/clean/chrome/browser",
|
| "//ios/clean/chrome/browser/ui/actions",
|
| "//ios/clean/chrome/browser/ui/animators",
|
| "//ios/clean/chrome/browser/ui/commands",
|
| - "//ios/clean/chrome/browser/ui/ntp",
|
| - "//ios/clean/chrome/browser/ui/tab_strip",
|
| - "//ios/clean/chrome/browser/ui/toolbar",
|
| - "//ios/clean/chrome/browser/ui/web_contents",
|
| "//ios/shared/chrome/browser/ui/browser_list",
|
| "//ios/shared/chrome/browser/ui/commands",
|
| "//ios/shared/chrome/browser/ui/coordinators",
|
| @@ -28,15 +28,22 @@ source_set("tab") {
|
| ]
|
| }
|
|
|
| -source_set("tab_ui") {
|
| +source_set("find_in_page_ui") {
|
| sources = [
|
| - "tab_container_view_controller.h",
|
| - "tab_container_view_controller.mm",
|
| + "find_in_page_consumer.h",
|
| + "find_in_page_view_controller.h",
|
| + "find_in_page_view_controller.mm",
|
| ]
|
| deps = [
|
| + "//base",
|
| + "//components/strings",
|
| + "//ios/chrome/browser/ui/find_bar",
|
| "//ios/clean/chrome/browser/ui",
|
| + "//ios/clean/chrome/browser/ui/actions",
|
| "//ios/clean/chrome/browser/ui/animators",
|
| + "//ios/clean/chrome/browser/ui/commands",
|
| "//ios/clean/chrome/browser/ui/presenters",
|
| + "//ui/base",
|
| ]
|
| libs = [ "UIKit.framework" ]
|
| configs += [ "//build/config/compiler:enable_arc" ]
|
|
|