| 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("omnibox") { |
| 6 sources = [ |
| 7 "location_bar_coordinator.h", |
| 8 "location_bar_coordinator.mm", |
| 9 "location_bar_mediator.h", |
| 10 "location_bar_mediator.mm", |
| 11 ] |
| 12 deps = [ |
| 13 ":omnibox_ui", |
| 14 "//base", |
| 15 "//components/toolbar", |
| 16 "//ios/chrome/browser/ssl", |
| 17 "//ios/chrome/browser/ui/omnibox:omnibox_internal", |
| 18 "//ios/chrome/browser/ui/toolbar", |
| 19 "//ios/clean/chrome/browser", |
| 20 "//ios/shared/chrome/browser/tabs", |
| 21 "//ios/shared/chrome/browser/ui/browser_list", |
| 22 "//ios/shared/chrome/browser/ui/coordinators", |
| 23 "//ios/shared/chrome/browser/ui/omnibox", |
| 24 "//ios/web", |
| 25 ] |
| 26 configs += [ "//build/config/compiler:enable_arc" ] |
| 27 } |
| 28 |
| 29 source_set("omnibox_ui") { |
| 30 sources = [ |
| 31 "location_bar_view_controller.h", |
| 32 "location_bar_view_controller.mm", |
| 33 ] |
| 34 deps = [ |
| 35 "//ios/chrome/browser/ui/omnibox:omnibox_internal", |
| 36 ] |
| 37 configs += [ "//build/config/compiler:enable_arc" ] |
| 38 } |
| 39 |
| 40 source_set("unit_tests") { |
| 41 testonly = true |
| 42 sources = [ |
| 43 "location_bar_coordinator_unittest.mm", |
| 44 "location_bar_mediator_unittest.mm", |
| 45 ] |
| 46 |
| 47 deps = [ |
| 48 ":omnibox", |
| 49 "//testing/gtest", |
| 50 ] |
| 51 configs += [ "//build/config/compiler:enable_arc" ] |
| 52 } |
| OLD | NEW |