OLD | NEW |
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") | |
6 | |
7 declare_args() { | 5 declare_args() { |
8 # Label of the target providing application icons. This target must be a | 6 # Label of the target providing application icons. This target must be a |
9 # bundle_data target that copy Icon-*.png files in the application bundle. | 7 # bundle_data target that copy Icon-*.png files in the application bundle. |
10 ios_application_icons_target = "//ios/chrome/app/resources:chromium_icons" | 8 ios_application_icons_target = "//ios/chrome/app/resources:chromium_icons" |
11 | 9 |
12 # Label of the target providing image assets for the launchscreen. This | 10 # Label of the target providing image assets for the launchscreen. This |
13 # target must be an asset catalog that contains at least two imagesets, one | 11 # target must be an asset catalog that contains at least two imagesets, one |
14 # named "launchscreen_app_logo" and one named "launchscreen_brand_name". | 12 # named "launchscreen_app_logo" and one named "launchscreen_brand_name". |
15 ios_launchscreen_assets_target = | 13 ios_launchscreen_assets_target = |
16 "//ios/chrome/app/resources:launchscreen_assets" | 14 "//ios/chrome/app/resources:launchscreen_assets" |
17 | 15 |
18 # Label of the target providing packed resources (localizable strings, | 16 # Label of the target providing packed resources (localizable strings, |
19 # scalable and unscalable resources). This target must copy the packed | 17 # scalable and unscalable resources). This target must copy the packed |
20 # resources to the application bundle when depended on. | 18 # resources to the application bundle when depended on. |
21 ios_packed_resources_target = "//ios/chrome/app/resources:packed_resources" | 19 ios_packed_resources_target = "//ios/chrome/app/resources:packed_resources" |
22 | 20 |
23 # Label of the target providing implementation for ChromeBrowserProvider. | 21 # Label of the target providing implementation for ChromeBrowserProvider. |
24 # Overridden when using the Google-internal repository to build Chrome on iOS. | 22 # Overridden when using the Google-internal repository to build Chrome on iOS. |
25 ios_provider_target = "//ios/chrome/browser/providers:provider_factory" | 23 ios_provider_target = "//ios/chrome/browser/providers:provider_factory" |
26 } | 24 } |
OLD | NEW |