| 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 278 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 289 source_set("downstream_provider_factory") { | 289 source_set("downstream_provider_factory") { |
| 290 sources = [ | 290 sources = [ |
| 291 "downstream_chromium_browser_provider_factory.mm", | 291 "downstream_chromium_browser_provider_factory.mm", |
| 292 ] | 292 ] |
| 293 deps = [ | 293 deps = [ |
| 294 ":downstream_provider", | 294 ":downstream_provider", |
| 295 "//base", | 295 "//base", |
| 296 "//ios/public/provider/chrome/browser", | 296 "//ios/public/provider/chrome/browser", |
| 297 ] | 297 ] |
| 298 } | 298 } |
| 299 | |
| 300 # Clean Skeleton targets | |
| 301 source_set("browser_clean_skeleton") { | |
| 302 sources = [ | |
| 303 "browser_coordinator+internal.h", | |
| 304 "browser_coordinator.h", | |
| 305 "browser_coordinator.mm", | |
| 306 "url_opening.h", | |
| 307 ] | |
| 308 | |
| 309 configs += [ "//build/config/compiler:enable_arc" ] | |
| 310 | |
| 311 deps = [ | |
| 312 "//base", | |
| 313 "//ios/chrome/browser", | |
| 314 "//ios/chrome/browser/browser_state", | |
| 315 ] | |
| 316 } | |
| OLD | NEW |