| 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/locales.gni") | 5 import("//build/config/locales.gni") |
| 6 import("//tools/grit/grit_rule.gni") | 6 import("//tools/grit/grit_rule.gni") |
| 7 import("//ios/chrome/app/resources/ios_chrome_repack.gni") | 7 import("//ios/chrome/app/resources/ios_chrome_repack.gni") |
| 8 | 8 |
| 9 grit("resources") { | 9 grit("resources") { |
| 10 source = "ios_resources.grd" | 10 source = "ios_resources.grd" |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 51 deps = [ | 51 deps = [ |
| 52 ":resources", | 52 ":resources", |
| 53 "//components/resources", | 53 "//components/resources", |
| 54 "//ios/web:resources", | 54 "//ios/web:resources", |
| 55 "//net:net_resources", | 55 "//net:net_resources", |
| 56 "//ui/resources", | 56 "//ui/resources", |
| 57 ] | 57 ] |
| 58 output = "$target_gen_dir/resources.pak" | 58 output = "$target_gen_dir/resources.pak" |
| 59 copy_data_to_bundle = true | 59 copy_data_to_bundle = true |
| 60 } | 60 } |
| 61 |
| 62 bundle_data("launchscreen_assets") { |
| 63 sources = [ |
| 64 "launchscreen_images.xcassets/Contents.json", |
| 65 "launchscreen_images.xcassets/launchscreen_app_logo.imageset/Contents.json", |
| 66 "launchscreen_images.xcassets/launchscreen_app_logo.imageset/launchscreen_ap
p_logo.png", |
| 67 "launchscreen_images.xcassets/launchscreen_brand_name.imageset/Contents.json
", |
| 68 "launchscreen_images.xcassets/launchscreen_brand_name.imageset/launchscreen_
brand_name.png", |
| 69 ] |
| 70 outputs = [ |
| 71 "{{bundle_resources_dir}}/{{source_file_part}}", |
| 72 ] |
| 73 } |
| OLD | NEW |