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

Side by Side Diff: ios/public/provider/chrome/browser/build_config.gni

Issue 2537443002: [ios] Adds launchscreen image assets for Chromium. (Closed)
Patch Set: Add final resources. Created 4 years 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 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 import("//build/config/chrome_build.gni") 5 import("//build/config/chrome_build.gni")
6 6
7 _default_ios_launchscreen_assets_target =
8 "//ios/chrome/app/resources:launchscreen_assets"
7 _default_ios_provider_target = "//ios/chrome/browser/providers:provider_factory" 9 _default_ios_provider_target = "//ios/chrome/browser/providers:provider_factory"
8 10
9 declare_args() { 11 declare_args() {
10 # Control the provider API implementation used by Chromium on iOS. Requires 12 # Control the provider API implementation used by Chromium on iOS. Requires
11 # access to the private Google-internal Chrome on iOS repository if true. 13 # access to the private Google-internal Chrome on iOS repository if true.
12 # DEPRECATED, will be removed as soon as all downstream code stops using it. 14 # DEPRECATED, will be removed as soon as all downstream code stops using it.
13 use_ios_internal_provider = is_chrome_branded 15 use_ios_internal_provider = is_chrome_branded
14 16
17 # Label of the target providing image assets for the launchscreen. This
18 # target must be an asset catalog that contains at least two imagesets, one
19 # named "launchscreen_app_logo" and one named "launchscreen_brand_name".
20 ios_launchscreen_assets_target = _default_ios_launchscreen_assets_target
21
15 # Label of the target providing implementation for ChromeBrowserProvider. 22 # Label of the target providing implementation for ChromeBrowserProvider.
16 # Overridden when using the Google-internal repository to build Chrome on iOS. 23 # Overridden when using the Google-internal repository to build Chrome on iOS.
17 ios_provider_target = _default_ios_provider_target 24 ios_provider_target = _default_ios_provider_target
18 } 25 }
19 26
20 # True if the provider target used has not been overridden. 27 # True if the provider target used has not been overridden.
21 use_default_ios_provider = ios_provider_target == _default_ios_provider_target 28 use_default_ios_provider = ios_provider_target == _default_ios_provider_target
OLDNEW
« no previous file with comments | « ios/chrome/app/resources/launchscreen_images.xcassets/launchscreen_brand_name.imageset/launchscreen_brand_name@3x.png ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698