| 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") | 5 import("//build/config/chrome_build.gni") |
| 6 import("//build/config/ios/rules.gni") | 6 import("//build/config/ios/rules.gni") |
| 7 import("//build/config/locales.gni") | 7 import("//build/config/locales.gni") |
| 8 import("//ios/chrome/app/resources/ios_chrome_repack.gni") | 8 import("//ios/chrome/app/resources/ios_chrome_repack.gni") |
| 9 import("//ios/chrome/tools/strings/generate_localizable_strings.gni") | 9 import("//ios/chrome/tools/strings/generate_localizable_strings.gni") |
| 10 import("//ios/public/provider/chrome/browser/build_config.gni") | 10 import("//ios/public/provider/chrome/browser/build_config.gni") |
| (...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 90 "{{bundle_resources_dir}}/{{source_file_part}}", | 90 "{{bundle_resources_dir}}/{{source_file_part}}", |
| 91 ] | 91 ] |
| 92 } | 92 } |
| 93 | 93 |
| 94 bundle_data("quick_action_icons") { | 94 bundle_data("quick_action_icons") { |
| 95 sources = [ | 95 sources = [ |
| 96 "quick_action_new_incognito_tab@2x.png", | 96 "quick_action_new_incognito_tab@2x.png", |
| 97 "quick_action_new_incognito_tab@3x.png", | 97 "quick_action_new_incognito_tab@3x.png", |
| 98 "quick_action_new_tab@2x.png", | 98 "quick_action_new_tab@2x.png", |
| 99 "quick_action_new_tab@3x.png", | 99 "quick_action_new_tab@3x.png", |
| 100 "quick_action_qr_scanner@2x.png", |
| 101 "quick_action_qr_scanner@3x.png", |
| 100 "quick_action_voice_search@2x.png", | 102 "quick_action_voice_search@2x.png", |
| 101 "quick_action_voice_search@3x.png", | 103 "quick_action_voice_search@3x.png", |
| 102 ] | 104 ] |
| 103 outputs = [ | 105 outputs = [ |
| 104 "{{bundle_resources_dir}}/{{source_file_part}}", | 106 "{{bundle_resources_dir}}/{{source_file_part}}", |
| 105 ] | 107 ] |
| 106 } | 108 } |
| 107 | 109 |
| 108 bundle_data("launchscreen_assets") { | 110 bundle_data("launchscreen_assets") { |
| 109 sources = [ | 111 sources = [ |
| (...skipping 20 matching lines...) Expand all Loading... |
| 130 datapack_dir = get_label_info(ios_packed_resources_target, "target_gen_dir") | 132 datapack_dir = get_label_info(ios_packed_resources_target, "target_gen_dir") |
| 131 packed_locales = ios_packed_locales_as_mac_outputs | 133 packed_locales = ios_packed_locales_as_mac_outputs |
| 132 output_filenames = [ | 134 output_filenames = [ |
| 133 "InfoPlist.strings", | 135 "InfoPlist.strings", |
| 134 "Localizable.strings", | 136 "Localizable.strings", |
| 135 ] | 137 ] |
| 136 deps = [ | 138 deps = [ |
| 137 ios_packed_resources_target, | 139 ios_packed_resources_target, |
| 138 ] | 140 ] |
| 139 } | 141 } |
| OLD | NEW |