| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 action("aggregate_vector_icons") { | 5 action("aggregate_vector_icons") { |
| 6 visibility = [ ":*" ] | 6 visibility = [ ":*" ] |
| 7 | 7 |
| 8 script = "aggregate_vector_icons.py" | 8 script = "aggregate_vector_icons.py" |
| 9 | 9 |
| 10 icons = [ | 10 icons = [ |
| (...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 164 "system_menu_brightness.1x.icon", | 164 "system_menu_brightness.1x.icon", |
| 165 "system_menu_brightness.icon", | 165 "system_menu_brightness.icon", |
| 166 "system_menu_business.1x.icon", | 166 "system_menu_business.1x.icon", |
| 167 "system_menu_business.icon", | 167 "system_menu_business.icon", |
| 168 "system_menu_caps_lock.1x.icon", | 168 "system_menu_caps_lock.1x.icon", |
| 169 "system_menu_caps_lock.icon", | 169 "system_menu_caps_lock.icon", |
| 170 "system_menu_cast.1x.icon", | 170 "system_menu_cast.1x.icon", |
| 171 "system_menu_cast.icon", | 171 "system_menu_cast.icon", |
| 172 "system_menu_child_user.1x.icon", | 172 "system_menu_child_user.1x.icon", |
| 173 "system_menu_child_user.icon", | 173 "system_menu_child_user.icon", |
| 174 "system_menu_keyboard.1x.icon", | |
| 175 "system_menu_keyboard.icon", | |
| 176 "system_menu_rotation_lock_auto.1x.icon", | 174 "system_menu_rotation_lock_auto.1x.icon", |
| 177 "system_menu_rotation_lock_auto.icon", | 175 "system_menu_rotation_lock_auto.icon", |
| 178 "system_menu_rotation_lock_locked.1x.icon", | 176 "system_menu_rotation_lock_locked.1x.icon", |
| 179 "system_menu_rotation_lock_locked.icon", | 177 "system_menu_rotation_lock_locked.icon", |
| 180 "system_menu_screen_share.1x.icon", | 178 "system_menu_screen_share.1x.icon", |
| 181 "system_menu_screen_share.icon", | 179 "system_menu_screen_share.icon", |
| 182 "system_menu_supervised_user.1x.icon", | 180 "system_menu_supervised_user.1x.icon", |
| 183 "system_menu_supervised_user.icon", | 181 "system_menu_supervised_user.icon", |
| 184 "system_menu_sms.icon", | 182 "system_menu_sms.icon", |
| 185 "system_menu_timer.1x.icon", | 183 "system_menu_timer.1x.icon", |
| (...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 261 output_h, | 259 output_h, |
| 262 ] | 260 ] |
| 263 | 261 |
| 264 response_file_contents = rebase_path(icons, root_build_dir) | 262 response_file_contents = rebase_path(icons, root_build_dir) |
| 265 | 263 |
| 266 args = [ | 264 args = [ |
| 267 "--working_directory=" + rebase_path("./"), | 265 "--working_directory=" + rebase_path("./"), |
| 268 "--file_list={{response_file_name}}", | 266 "--file_list={{response_file_name}}", |
| 269 "--output_cc=" + rebase_path(output_cc, root_build_dir), | 267 "--output_cc=" + rebase_path(output_cc, root_build_dir), |
| 270 "--output_h=" + rebase_path(output_h, root_build_dir), | 268 "--output_h=" + rebase_path(output_h, root_build_dir), |
| 269 "--use_legacy_template", |
| 271 ] | 270 ] |
| 272 } | 271 } |
| 273 | 272 |
| 274 source_set("vector_icons") { | 273 source_set("vector_icons") { |
| 275 sources = get_target_outputs(":aggregate_vector_icons") | 274 sources = get_target_outputs(":aggregate_vector_icons") |
| 276 sources += [ | 275 sources += [ |
| 277 "../vector_icon_types.h", | 276 "../vector_icon_types.h", |
| 278 "../vector_icons_public.h", | 277 "../vector_icons_public.h", |
| 279 ] | 278 ] |
| 280 | 279 |
| 281 deps = [ | 280 deps = [ |
| 282 ":aggregate_vector_icons", | 281 ":aggregate_vector_icons", |
| 283 "//base", | 282 "//base", |
| 284 "//skia", | 283 "//skia", |
| 285 ] | 284 ] |
| 286 } | 285 } |
| OLD | NEW |