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/public/provider/chrome/browser/build_config.gni") | 9 import("//ios/public/provider/chrome/browser/build_config.gni") |
10 import("//tools/grit/grit_rule.gni") | 10 import("//tools/grit/grit_rule.gni") |
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
73 "chromium/Icon-58.png", | 73 "chromium/Icon-58.png", |
74 "chromium/Icon-76.png", | 74 "chromium/Icon-76.png", |
75 "chromium/Icon-80.png", | 75 "chromium/Icon-80.png", |
76 "chromium/Icon-87.png", | 76 "chromium/Icon-87.png", |
77 ] | 77 ] |
78 outputs = [ | 78 outputs = [ |
79 "{{bundle_resources_dir}}/{{source_file_part}}", | 79 "{{bundle_resources_dir}}/{{source_file_part}}", |
80 ] | 80 ] |
81 } | 81 } |
82 | 82 |
83 bundle_data("quick_action_icons") { | |
rohitrao (ping after 24h)
2016/12/07 21:56:04
"resources_quick_actions" would be a more standard
sdefresne
2016/12/08 08:51:30
quick_action_*.png are only referenced from the In
| |
84 sources = [ | |
85 "quick_action_new_incognito_tab@2x.png", | |
86 "quick_action_new_incognito_tab@3x.png", | |
87 "quick_action_new_tab@2x.png", | |
88 "quick_action_new_tab@3x.png", | |
89 "quick_action_voice_search@2x.png", | |
90 "quick_action_voice_search@3x.png", | |
91 ] | |
92 outputs = [ | |
93 "{{bundle_resources_dir}}/{{source_file_part}}", | |
94 ] | |
95 } | |
96 | |
83 bundle_data("launchscreen_assets") { | 97 bundle_data("launchscreen_assets") { |
84 sources = [ | 98 sources = [ |
85 "launchscreen_images.xcassets/Contents.json", | 99 "launchscreen_images.xcassets/Contents.json", |
86 "launchscreen_images.xcassets/launchscreen_app_logo.imageset/Contents.json", | 100 "launchscreen_images.xcassets/launchscreen_app_logo.imageset/Contents.json", |
87 "launchscreen_images.xcassets/launchscreen_app_logo.imageset/launchscreen_ap p_logo.png", | 101 "launchscreen_images.xcassets/launchscreen_app_logo.imageset/launchscreen_ap p_logo.png", |
88 "launchscreen_images.xcassets/launchscreen_brand_name.imageset/Contents.json ", | 102 "launchscreen_images.xcassets/launchscreen_brand_name.imageset/Contents.json ", |
89 "launchscreen_images.xcassets/launchscreen_brand_name.imageset/launchscreen_ brand_name.png", | 103 "launchscreen_images.xcassets/launchscreen_brand_name.imageset/launchscreen_ brand_name.png", |
90 ] | 104 ] |
91 outputs = [ | 105 outputs = [ |
92 "{{bundle_resources_dir}}/{{source_file_part}}", | 106 "{{bundle_resources_dir}}/{{source_file_part}}", |
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
139 "//components/resources/terms/terms_tr.html", | 153 "//components/resources/terms/terms_tr.html", |
140 "//components/resources/terms/terms_uk.html", | 154 "//components/resources/terms/terms_uk.html", |
141 "//components/resources/terms/terms_vi.html", | 155 "//components/resources/terms/terms_vi.html", |
142 "//components/resources/terms/terms_zh-CN.html", | 156 "//components/resources/terms/terms_zh-CN.html", |
143 "//components/resources/terms/terms_zh-TW.html", | 157 "//components/resources/terms/terms_zh-TW.html", |
144 ] | 158 ] |
145 outputs = [ | 159 outputs = [ |
146 "{{bundle_resources_dir}}/{{source_file_part}}", | 160 "{{bundle_resources_dir}}/{{source_file_part}}", |
147 ] | 161 ] |
148 } | 162 } |
OLD | NEW |