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

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

Issue 2889093002: [ObjC ARC] Converts ios/chrome/browser/geolocation:geolocation_internal to ARC. (Closed)
Patch Set: Remove the weak annotations. Created 3 years, 6 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
« no previous file with comments | « no previous file | ios/chrome/browser/geolocation/omnibox_geolocation_controller.mm » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
60 "//base", 60 "//base",
61 "//components/prefs:test_support", 61 "//components/prefs:test_support",
62 "//ios/chrome/test:test_support", 62 "//ios/chrome/test:test_support",
63 "//ios/public/provider/chrome/browser", 63 "//ios/public/provider/chrome/browser",
64 "//testing/gtest", 64 "//testing/gtest",
65 "//third_party/ocmock", 65 "//third_party/ocmock",
66 ] 66 ]
67 } 67 }
68 68
69 source_set("geolocation_internal") { 69 source_set("geolocation_internal") {
70 configs += [ "//build/config/compiler:enable_arc" ]
70 sources = [ 71 sources = [
71 "omnibox_geolocation_controller+Testing.h", 72 "omnibox_geolocation_controller+Testing.h",
72 "omnibox_geolocation_controller.h", 73 "omnibox_geolocation_controller.h",
73 "omnibox_geolocation_controller.mm", 74 "omnibox_geolocation_controller.mm",
74 ] 75 ]
75 deps = [ 76 deps = [
76 ":geolocation", 77 ":geolocation",
77 "//base", 78 "//base",
78 "//components/google/core/browser", 79 "//components/google/core/browser",
79 "//components/version_info", 80 "//components/version_info",
80 "//ios/chrome/browser/browser_state", 81 "//ios/chrome/browser/browser_state",
81 "//ios/chrome/browser/tabs", 82 "//ios/chrome/browser/tabs",
82 "//ios/web", 83 "//ios/web",
83 "//ui/base", 84 "//ui/base",
84 "//url", 85 "//url",
85 ] 86 ]
86 libs = [ 87 libs = [
87 "CoreLocation.framework", 88 "CoreLocation.framework",
88 "UIKit.framework", 89 "UIKit.framework",
89 ] 90 ]
90 } 91 }
OLDNEW
« no previous file with comments | « no previous file | ios/chrome/browser/geolocation/omnibox_geolocation_controller.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698