| OLD | NEW |
| 1 # Copyright 2017 The Chromium Authors. All rights reserved. | 1 # Copyright 2017 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/ios/rules.gni") | 5 import("//build/config/ios/rules.gni") |
| 6 import("//ios/public/provider/chrome/browser/build_config.gni") |
| 6 | 7 |
| 7 group("resources") { | 8 group("resources") { |
| 8 public_deps = [ | 9 public_deps = [ |
| 9 ":icons", | 10 ":icons", |
| 10 ":launchscreen_xib", | 11 ":launchscreen_xib", |
| 12 ios_packed_resources_target, |
| 11 ] | 13 ] |
| 12 } | 14 } |
| 13 | 15 |
| 14 bundle_data_ib_file("launchscreen_xib") { | 16 bundle_data_ib_file("launchscreen_xib") { |
| 15 source = "LaunchScreen.storyboard" | 17 source = "LaunchScreen.storyboard" |
| 16 } | 18 } |
| 17 | 19 |
| 18 bundle_data("icons") { | 20 bundle_data("icons") { |
| 19 sources = [ | 21 sources = [ |
| 20 "Icon-120.png", | 22 "Icon-120.png", |
| 21 "Icon-152.png", | 23 "Icon-152.png", |
| 22 "Icon-167.png", | 24 "Icon-167.png", |
| 23 "Icon-180.png", | 25 "Icon-180.png", |
| 24 "Icon-29.png", | 26 "Icon-29.png", |
| 25 "Icon-58.png", | 27 "Icon-58.png", |
| 26 "Icon-76.png", | 28 "Icon-76.png", |
| 27 "Icon-80.png", | 29 "Icon-80.png", |
| 28 "Icon-87.png", | 30 "Icon-87.png", |
| 29 ] | 31 ] |
| 30 outputs = [ | 32 outputs = [ |
| 31 "{{bundle_resources_dir}}/{{source_file_part}}", | 33 "{{bundle_resources_dir}}/{{source_file_part}}", |
| 32 ] | 34 ] |
| 33 } | 35 } |
| OLD | NEW |