Gauthier Ambard | e685b2df | 2017-12-14 14:16:58 | [diff] [blame] | 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("popup") { |
| 6 | sources = [ |
| 7 | "omnibox_popup_coordinator.h", |
| 8 | "omnibox_popup_coordinator.mm", |
[email protected] | 4ef09407 | 2018-03-05 16:59:29 | [diff] [blame^] | 9 | "omnibox_popup_mediator.h", |
| 10 | "omnibox_popup_mediator.mm", |
| 11 | "omnibox_popup_positioner.h", |
| 12 | "omnibox_popup_presenter.h", |
| 13 | "omnibox_popup_presenter.mm", |
| 14 | "omnibox_popup_provider.h", |
| 15 | "omnibox_popup_view_controller.h", |
| 16 | "omnibox_popup_view_controller.mm", |
| 17 | "omnibox_popup_view_ios.h", |
| 18 | "omnibox_popup_view_ios.mm", |
| 19 | "omnibox_popup_view_suggestions_delegate.h", |
| 20 | ] |
| 21 | deps = [ |
| 22 | ":popup_internal", |
| 23 | "//base", |
| 24 | "//components/image_fetcher/ios", |
| 25 | "//components/omnibox/browser", |
| 26 | "//components/open_from_clipboard", |
| 27 | "//ios/chrome/browser", |
| 28 | "//ios/chrome/browser/browser_state", |
| 29 | "//ios/chrome/browser/ui:ui", |
| 30 | "//ios/chrome/browser/ui:ui_util", |
| 31 | "//ios/chrome/browser/ui/omnibox:omnibox_popup_shared", |
| 32 | "//ios/chrome/browser/ui/omnibox:omnibox_util", |
| 33 | "//ios/chrome/browser/ui/toolbar/public:public", |
| 34 | "//ios/chrome/browser/ui/toolbar/public:toolbar_base_feature", |
| 35 | "//ios/chrome/browser/ui/util:util", |
| 36 | "//ios/web/public:public", |
| 37 | "//net", |
| 38 | ] |
| 39 | configs += [ "//build/config/compiler:enable_arc" ] |
| 40 | } |
| 41 | |
| 42 | source_set("popup_internal") { |
| 43 | sources = [ |
| 44 | "omnibox_popup_row.h", |
| 45 | "omnibox_popup_row.mm", |
Gauthier Ambard | e685b2df | 2017-12-14 14:16:58 | [diff] [blame] | 46 | ] |
| 47 | deps = [ |
| 48 | "//base", |
| 49 | "//components/image_fetcher/ios", |
| 50 | "//components/omnibox/browser", |
[email protected] | 4ef09407 | 2018-03-05 16:59:29 | [diff] [blame^] | 51 | "//ios/chrome/app/theme:theme", |
Gauthier Ambard | e685b2df | 2017-12-14 14:16:58 | [diff] [blame] | 52 | "//ios/chrome/browser/browser_state", |
[email protected] | 4ef09407 | 2018-03-05 16:59:29 | [diff] [blame^] | 53 | "//ios/chrome/browser/ui:ui_util", |
| 54 | "//ios/chrome/browser/ui/omnibox:omnibox_popup_shared", |
| 55 | "//ios/chrome/browser/ui/util:util", |
Gauthier Ambard | e685b2df | 2017-12-14 14:16:58 | [diff] [blame] | 56 | "//net", |
| 57 | ] |
| 58 | configs += [ "//build/config/compiler:enable_arc" ] |
| 59 | } |