| # Copyright 2020 The Chromium Authors. All rights reserved. |
| # Use of this source code is governed by a BSD-style license that can be |
| # found in the LICENSE file. |
| |
| import("//build/config/ios/asset_catalog.gni") |
| import("//build/config/ios/rules.gni") |
| |
| group("resources") { |
| deps = [ |
| ":consent_illustration", |
| ":default_world_favicon", |
| ":empty_credentials_illustration", |
| ":info_icon", |
| ":password_hide_icon", |
| ":password_reveal_icon", |
| ":stale_credentials_illustration", |
| ] |
| } |
| |
| imageset("consent_illustration") { |
| sources = [ |
| "consent_illustration.imageset/Contents.json", |
| "consent_illustration.imageset/illustration_dark.png", |
| "consent_illustration.imageset/illustration_light.png", |
| ] |
| } |
| |
| imageset("empty_credentials_illustration") { |
| sources = [ |
| "empty_credentials_illustration.imageset/Contents.json", |
| "empty_credentials_illustration.imageset/illustration_dark.png", |
| "empty_credentials_illustration.imageset/illustration_light.png", |
| ] |
| } |
| |
| imageset("stale_credentials_illustration") { |
| sources = [ |
| "stale_credentials_illustration.imageset/Contents.json", |
| "stale_credentials_illustration.imageset/illustration_dark.png", |
| "stale_credentials_illustration.imageset/illustration_light.png", |
| ] |
| } |
| |
| imageset("password_reveal_icon") { |
| sources = [ |
| "password_reveal_icon.imageset/Contents.json", |
| "password_reveal_icon.imageset/password_reveal_icon@2x.png", |
| "password_reveal_icon.imageset/password_reveal_icon@3x.png", |
| ] |
| } |
| |
| imageset("password_hide_icon") { |
| sources = [ |
| "password_hide_icon.imageset/Contents.json", |
| "password_hide_icon.imageset/password_hide_icon@2x.png", |
| "password_hide_icon.imageset/password_hide_icon@3x.png", |
| ] |
| } |
| |
| imageset("default_world_favicon") { |
| sources = [ |
| "default_world_favicon.imageset/Contents.json", |
| "default_world_favicon.imageset/default_world_favicon.png", |
| "default_world_favicon.imageset/default_world_favicon@2x.png", |
| "default_world_favicon.imageset/default_world_favicon@3x.png", |
| ] |
| } |
| |
| imageset("info_icon") { |
| sources = [ |
| "info_icon.imageset/Contents.json", |
| "info_icon.imageset/info_icon@2x.png", |
| "info_icon.imageset/info_icon@3x.png", |
| ] |
| } |