| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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("geolocation") { | 5 source_set("geolocation") { |
| 6 configs += [ "//build/config/compiler:enable_arc" ] | 6 configs += [ "//build/config/compiler:enable_arc" ] |
| 7 sources = [ | 7 sources = [ |
| 8 "CLLocation+OmniboxGeolocation.h", | 8 "CLLocation+OmniboxGeolocation.h", |
| 9 "CLLocation+OmniboxGeolocation.mm", | 9 "CLLocation+OmniboxGeolocation.mm", |
| 10 "CLLocation+XGeoHeader.h", | 10 "CLLocation+XGeoHeader.h", |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 57 deps = [ | 57 deps = [ |
| 58 ":geolocation", | 58 ":geolocation", |
| 59 "//base", | 59 "//base", |
| 60 "//components/prefs:test_support", | 60 "//components/prefs:test_support", |
| 61 "//ios/chrome/test:test_support", | 61 "//ios/chrome/test:test_support", |
| 62 "//ios/public/provider/chrome/browser", | 62 "//ios/public/provider/chrome/browser", |
| 63 "//testing/gtest", | 63 "//testing/gtest", |
| 64 "//third_party/ocmock", | 64 "//third_party/ocmock", |
| 65 ] | 65 ] |
| 66 } | 66 } |
| 67 | |
| 68 source_set("geolocation_internal") { | |
| 69 sources = [ | |
| 70 "omnibox_geolocation_controller+Testing.h", | |
| 71 "omnibox_geolocation_controller.h", | |
| 72 "omnibox_geolocation_controller.mm", | |
| 73 ] | |
| 74 deps = [ | |
| 75 "//base", | |
| 76 "//components/google/core/browser", | |
| 77 "//components/version_info", | |
| 78 "//ios/chrome/browser/browser_state", | |
| 79 "//ios/chrome/browser/geolocation", | |
| 80 "//ios/chrome/browser/tabs", | |
| 81 "//ios/web", | |
| 82 "//ui/base", | |
| 83 "//url", | |
| 84 ] | |
| 85 libs = [ | |
| 86 "CoreLocation.framework", | |
| 87 "UIKit.framework", | |
| 88 ] | |
| 89 } | |
| OLD | NEW |