Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(6)

Side by Side Diff: ios/chrome/browser/geolocation/BUILD.gn

Issue 2610863002: Fix deps in all BUILD.gn files in ios. (Closed)
Patch Set: Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
65 ] 65 ]
66 } 66 }
67 67
68 source_set("geolocation_internal") { 68 source_set("geolocation_internal") {
69 sources = [ 69 sources = [
70 "omnibox_geolocation_controller+Testing.h", 70 "omnibox_geolocation_controller+Testing.h",
71 "omnibox_geolocation_controller.h", 71 "omnibox_geolocation_controller.h",
72 "omnibox_geolocation_controller.mm", 72 "omnibox_geolocation_controller.mm",
73 ] 73 ]
74 deps = [ 74 deps = [
75 ":geolocation",
75 "//base", 76 "//base",
76 "//components/google/core/browser", 77 "//components/google/core/browser",
77 "//components/version_info", 78 "//components/version_info",
78 "//ios/chrome/browser/browser_state", 79 "//ios/chrome/browser/browser_state",
79 "//ios/chrome/browser/geolocation",
80 "//ios/chrome/browser/tabs", 80 "//ios/chrome/browser/tabs",
81 "//ios/web", 81 "//ios/web",
82 "//ui/base", 82 "//ui/base",
83 "//url", 83 "//url",
84 ] 84 ]
85 libs = [ 85 libs = [
86 "CoreLocation.framework", 86 "CoreLocation.framework",
87 "UIKit.framework", 87 "UIKit.framework",
88 ] 88 ]
89 } 89 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698