| 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 action("aggregate_vector_icons") { | 5 action("aggregate_vector_icons") { |
| 6 visibility = [ ":*" ] | 6 visibility = [ ":*" ] |
| 7 | 7 |
| 8 script = "//ui/gfx/vector_icons/aggregate_vector_icons.py" | 8 script = "//ui/gfx/vector_icons/aggregate_vector_icons.py" |
| 9 | 9 |
| 10 icons = [ | 10 icons = [ |
| 11 "ime_menu_emoticon.1x.icon", |
| 12 "ime_menu_emoticon.icon", |
| 13 "ime_menu_microphone.1x.icon", |
| 14 "ime_menu_microphone.icon", |
| 15 "ime_menu_write.1x.icon", |
| 16 "ime_menu_write.icon", |
| 11 "palette_action_capture_region.1x.icon", | 17 "palette_action_capture_region.1x.icon", |
| 12 "palette_action_capture_region.icon", | 18 "palette_action_capture_region.icon", |
| 13 "palette_action_capture_screen.1x.icon", | 19 "palette_action_capture_screen.1x.icon", |
| 14 "palette_action_capture_screen.icon", | 20 "palette_action_capture_screen.icon", |
| 15 "palette_action_create_note.1x.icon", | 21 "palette_action_create_note.1x.icon", |
| 16 "palette_action_create_note.icon", | 22 "palette_action_create_note.icon", |
| 17 "palette_mode_laser_pointer.1x.icon", | 23 "palette_mode_laser_pointer.1x.icon", |
| 18 "palette_mode_laser_pointer.icon", | 24 "palette_mode_laser_pointer.icon", |
| 19 "palette_mode_magnify.1x.icon", | 25 "palette_mode_magnify.1x.icon", |
| 20 "palette_mode_magnify.icon", | 26 "palette_mode_magnify.icon", |
| (...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 119 source_set("vector_icons") { | 125 source_set("vector_icons") { |
| 120 sources = get_target_outputs(":aggregate_vector_icons") | 126 sources = get_target_outputs(":aggregate_vector_icons") |
| 121 sources += [ "//ui/gfx/vector_icon_types.h" ] | 127 sources += [ "//ui/gfx/vector_icon_types.h" ] |
| 122 | 128 |
| 123 deps = [ | 129 deps = [ |
| 124 ":aggregate_vector_icons", | 130 ":aggregate_vector_icons", |
| 125 "//base", | 131 "//base", |
| 126 "//skia", | 132 "//skia", |
| 127 ] | 133 ] |
| 128 } | 134 } |
| OLD | NEW |