| Index: ios/public/provider/chrome/browser/build_config.gni
|
| diff --git a/ios/public/provider/chrome/browser/build_config.gni b/ios/public/provider/chrome/browser/build_config.gni
|
| index 496c43a5fd99437e33f8ddcfa2f929acc93df567..c1d3cb40c62110b961d194d42780638ead0d4791 100644
|
| --- a/ios/public/provider/chrome/browser/build_config.gni
|
| +++ b/ios/public/provider/chrome/browser/build_config.gni
|
| @@ -4,6 +4,8 @@
|
|
|
| import("//build/config/chrome_build.gni")
|
|
|
| +_default_ios_launchscreen_assets_target =
|
| + "//ios/chrome/app/resources:launchscreen_assets"
|
| _default_ios_provider_target = "//ios/chrome/browser/providers:provider_factory"
|
|
|
| declare_args() {
|
| @@ -12,6 +14,11 @@ declare_args() {
|
| # DEPRECATED, will be removed as soon as all downstream code stops using it.
|
| use_ios_internal_provider = is_chrome_branded
|
|
|
| + # Label of the target providing image assets for the launchscreen. This
|
| + # target must be an asset catalog that contains at least two imagesets, one
|
| + # named "launchscreen_app_logo" and one named "launchscreen_brand_name".
|
| + ios_launchscreen_assets_target = _default_ios_launchscreen_assets_target
|
| +
|
| # Label of the target providing implementation for ChromeBrowserProvider.
|
| # Overridden when using the Google-internal repository to build Chrome on iOS.
|
| ios_provider_target = _default_ios_provider_target
|
|
|