OLD | NEW |
(Empty) | |
| 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 |
| 3 # found in the LICENSE file. |
| 4 |
| 5 source_set("find_in_page") { |
| 6 sources = [ |
| 7 "find_in_page_coordinator.h", |
| 8 "find_in_page_coordinator.mm", |
| 9 "find_in_page_mediator.h", |
| 10 "find_in_page_mediator.mm", |
| 11 ] |
| 12 |
| 13 configs += [ "//build/config/compiler:enable_arc" ] |
| 14 |
| 15 deps = [ |
| 16 ":find_in_page_ui", |
| 17 "//base", |
| 18 "//ios/chrome/browser/find_in_page", |
| 19 "//ios/clean/chrome/browser", |
| 20 "//ios/clean/chrome/browser/ui/actions", |
| 21 "//ios/clean/chrome/browser/ui/animators", |
| 22 "//ios/clean/chrome/browser/ui/commands", |
| 23 "//ios/shared/chrome/browser/coordinator_context", |
| 24 "//ios/shared/chrome/browser/tabs", |
| 25 "//ios/shared/chrome/browser/ui/browser_list", |
| 26 "//ios/web", |
| 27 ] |
| 28 } |
| 29 |
| 30 source_set("find_in_page_ui") { |
| 31 sources = [ |
| 32 "find_in_page_consumer.h", |
| 33 "find_in_page_view_controller.h", |
| 34 "find_in_page_view_controller.mm", |
| 35 ] |
| 36 deps = [ |
| 37 "//base", |
| 38 "//components/strings", |
| 39 "//ios/chrome/browser/ui/find_bar", |
| 40 "//ios/clean/chrome/browser/ui", |
| 41 "//ios/clean/chrome/browser/ui/actions", |
| 42 "//ios/clean/chrome/browser/ui/animators", |
| 43 "//ios/clean/chrome/browser/ui/commands", |
| 44 "//ios/clean/chrome/browser/ui/presenters", |
| 45 "//ui/base", |
| 46 ] |
| 47 libs = [ "UIKit.framework" ] |
| 48 configs += [ "//build/config/compiler:enable_arc" ] |
| 49 } |
OLD | NEW |