| OLD | NEW |
| 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 239 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 250 source_set("browser_internal") { | 250 source_set("browser_internal") { |
| 251 sources = [ | 251 sources = [ |
| 252 "callback_counter.h", | 252 "callback_counter.h", |
| 253 "callback_counter.mm", | 253 "callback_counter.mm", |
| 254 ] | 254 ] |
| 255 deps = [ | 255 deps = [ |
| 256 "//base", | 256 "//base", |
| 257 ] | 257 ] |
| 258 } | 258 } |
| 259 | 259 |
| 260 source_set("downstream_provider") { | |
| 261 sources = [ | |
| 262 "downstream_chromium_browser_provider.h", | |
| 263 "downstream_chromium_browser_provider.mm", | |
| 264 ] | |
| 265 deps = [ | |
| 266 ":browser", | |
| 267 "//base", | |
| 268 "//components/pref_registry", | |
| 269 "//components/prefs", | |
| 270 "//ios/chrome/browser/autofill:autofill_internal", | |
| 271 "//ios/chrome/browser/browser_state", | |
| 272 "//ios/chrome/browser/browser_state:browser_state_impl", | |
| 273 "//ios/chrome/browser/providers", | |
| 274 "//ios/chrome/browser/sync/glue", | |
| 275 "//ios/chrome/browser/sync/sessions", | |
| 276 "//ios/chrome/browser/tabs", | |
| 277 "//ios/chrome/browser/tabs:tabs_internal", | |
| 278 "//ios/chrome/browser/ui", | |
| 279 "//ios/chrome/browser/ui/webui:webui_internal", | |
| 280 ] | |
| 281 } | |
| 282 | |
| 283 source_set("downstream_provider_factory") { | |
| 284 sources = [ | |
| 285 "downstream_chromium_browser_provider_factory.mm", | |
| 286 ] | |
| 287 deps = [ | |
| 288 ":downstream_provider", | |
| 289 "//base", | |
| 290 "//ios/public/provider/chrome/browser", | |
| 291 ] | |
| 292 } | |
| 293 | |
| 294 # Clean Skeleton targets | 260 # Clean Skeleton targets |
| 295 source_set("browser_clean_skeleton") { | 261 source_set("browser_clean_skeleton") { |
| 296 sources = [ | 262 sources = [ |
| 297 "browser_coordinator+internal.h", | 263 "browser_coordinator+internal.h", |
| 298 "browser_coordinator.h", | 264 "browser_coordinator.h", |
| 299 "browser_coordinator.mm", | 265 "browser_coordinator.mm", |
| 300 "url_opening.h", | 266 "url_opening.h", |
| 301 ] | 267 ] |
| 302 | 268 |
| 303 configs += [ "//build/config/compiler:enable_arc" ] | 269 configs += [ "//build/config/compiler:enable_arc" ] |
| 304 | 270 |
| 305 deps = [ | 271 deps = [ |
| 306 ":browser", | 272 ":browser", |
| 307 "//base", | 273 "//base", |
| 308 "//ios/chrome/browser/browser_state", | 274 "//ios/chrome/browser/browser_state", |
| 309 ] | 275 ] |
| 310 } | 276 } |
| OLD | NEW |