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

Side by Side Diff: ios/chrome/browser/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 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 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 import("//build/buildflag_header.gni") 5 import("//build/buildflag_header.gni")
6 import("//build/config/features.gni") 6 import("//build/config/features.gni")
7 import("//build/config/ios/rules.gni") 7 import("//build/config/ios/rules.gni")
8 import("//rlz/features/features.gni") 8 import("//rlz/features/features.gni")
9 import("//third_party/protobuf/proto_library.gni") 9 import("//third_party/protobuf/proto_library.gni")
10 10
(...skipping 245 matching lines...) Expand 10 before | Expand all | Expand 10 after
256 "//base", 256 "//base",
257 ] 257 ]
258 } 258 }
259 259
260 source_set("downstream_provider") { 260 source_set("downstream_provider") {
261 sources = [ 261 sources = [
262 "downstream_chromium_browser_provider.h", 262 "downstream_chromium_browser_provider.h",
263 "downstream_chromium_browser_provider.mm", 263 "downstream_chromium_browser_provider.mm",
264 ] 264 ]
265 deps = [ 265 deps = [
266 ":browser",
266 "//base", 267 "//base",
267 "//components/pref_registry", 268 "//components/pref_registry",
268 "//components/prefs", 269 "//components/prefs",
269 "//ios/chrome/browser",
270 "//ios/chrome/browser/autofill:autofill_internal", 270 "//ios/chrome/browser/autofill:autofill_internal",
271 "//ios/chrome/browser/browser_state", 271 "//ios/chrome/browser/browser_state",
272 "//ios/chrome/browser/browser_state:browser_state_impl", 272 "//ios/chrome/browser/browser_state:browser_state_impl",
273 "//ios/chrome/browser/providers", 273 "//ios/chrome/browser/providers",
274 "//ios/chrome/browser/sync/glue", 274 "//ios/chrome/browser/sync/glue",
275 "//ios/chrome/browser/sync/sessions", 275 "//ios/chrome/browser/sync/sessions",
276 "//ios/chrome/browser/tabs", 276 "//ios/chrome/browser/tabs",
277 "//ios/chrome/browser/tabs:tabs_internal", 277 "//ios/chrome/browser/tabs:tabs_internal",
278 "//ios/chrome/browser/ui", 278 "//ios/chrome/browser/ui",
279 "//ios/chrome/browser/ui/webui:webui_internal", 279 "//ios/chrome/browser/ui/webui:webui_internal",
(...skipping 16 matching lines...) Expand all
296 sources = [ 296 sources = [
297 "browser_coordinator+internal.h", 297 "browser_coordinator+internal.h",
298 "browser_coordinator.h", 298 "browser_coordinator.h",
299 "browser_coordinator.mm", 299 "browser_coordinator.mm",
300 "url_opening.h", 300 "url_opening.h",
301 ] 301 ]
302 302
303 configs += [ "//build/config/compiler:enable_arc" ] 303 configs += [ "//build/config/compiler:enable_arc" ]
304 304
305 deps = [ 305 deps = [
306 ":browser",
306 "//base", 307 "//base",
307 "//ios/chrome/browser",
308 "//ios/chrome/browser/browser_state", 308 "//ios/chrome/browser/browser_state",
309 ] 309 ]
310 } 310 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698