| OLD | NEW |
| 1 # Copyright 2017 The Chromium Authors. All rights reserved. | 1 # Copyright 2017 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 "autologin.icon", |
| 12 "bluetooth_connected.icon", |
| 11 "browser_tools.icon", | 13 "browser_tools.icon", |
| 12 "browser_tools_error.icon", | 14 "browser_tools_error.icon", |
| 13 "browser_tools_update.icon", | 15 "browser_tools_update.icon", |
| 14 "caret_down.1x.icon", | 16 "caret_down.1x.icon", |
| 15 "caret_down.icon", | 17 "caret_down.icon", |
| 16 "caret_up.1x.icon", | 18 "caret_up.1x.icon", |
| 17 "caret_up.icon", | 19 "caret_up.icon", |
| 20 "crashed_tab.icon", |
| 21 "credit_card.1x.icon", |
| 22 "credit_card.icon", |
| 23 "folder.1x.icon", |
| 24 "folder.icon", |
| 25 "folder_managed.1x.icon", |
| 26 "folder_managed.icon", |
| 27 "folder_supervised.1x.icon", |
| 28 "folder_supervised.icon", |
| 29 "incognito.1x.icon", |
| 30 "incognito.icon", |
| 18 "laptop.icon", | 31 "laptop.icon", |
| 19 "navigate_back.1x.icon", | 32 "navigate_back.1x.icon", |
| 20 "navigate_back.icon", | 33 "navigate_back.icon", |
| 21 "navigate_forward.1x.icon", | 34 "navigate_forward.1x.icon", |
| 22 "navigate_forward.icon", | 35 "navigate_forward.icon", |
| 23 "navigate_home.1x.icon", | 36 "navigate_home.1x.icon", |
| 24 "navigate_home.icon", | 37 "navigate_home.icon", |
| 25 "navigate_reload.1x.icon", | 38 "navigate_reload.1x.icon", |
| 26 "navigate_reload.icon", | 39 "navigate_reload.icon", |
| 27 "navigate_stop.1x.icon", | 40 "navigate_stop.1x.icon", |
| 28 "navigate_stop.icon", | 41 "navigate_stop.icon", |
| 42 "overflow_chevron.1x.icon", |
| 43 "overflow_chevron.icon", |
| 29 "smartphone.icon", | 44 "smartphone.icon", |
| 30 "tab.icon", | 45 "tab.icon", |
| 31 "tab_audio.1x.icon", | 46 "tab_audio.1x.icon", |
| 32 "tab_audio.icon", | 47 "tab_audio.icon", |
| 33 "tab_audio_muting.1x.icon", | 48 "tab_audio_muting.1x.icon", |
| 34 "tab_audio_muting.icon", | 49 "tab_audio_muting.icon", |
| 35 "tab_bluetooth_connected.icon", | 50 "tab_bluetooth_connected.icon", |
| 36 "tab_close_hovered_pressed.1x.icon", | 51 "tab_close_hovered_pressed.1x.icon", |
| 37 "tab_close_hovered_pressed.icon", | 52 "tab_close_hovered_pressed.icon", |
| 38 "tab_close_normal.1x.icon", | 53 "tab_close_normal.1x.icon", |
| 39 "tab_close_normal.icon", | 54 "tab_close_normal.icon", |
| 40 "tab_media_capturing.icon", | 55 "tab_media_capturing.icon", |
| 41 "tab_media_recording.icon", | 56 "tab_media_recording.icon", |
| 42 "tab_usb_connected.1x.icon", | 57 "tab_usb_connected.1x.icon", |
| 43 "tab_usb_connected.icon", | 58 "tab_usb_connected.icon", |
| 44 "tablet.icon", | 59 "tablet.icon", |
| 60 "translate.icon", |
| 61 "zoom_minus.icon", |
| 62 "zoom_plus.icon", |
| 45 ] | 63 ] |
| 46 | 64 |
| 47 output_cc = "$target_gen_dir/vector_icons.cc" | 65 output_cc = "$target_gen_dir/vector_icons.cc" |
| 48 output_h = "$target_gen_dir/vector_icons.h" | 66 output_h = "$target_gen_dir/vector_icons.h" |
| 49 | 67 |
| 50 inputs = icons | 68 inputs = icons |
| 51 inputs += [ | 69 inputs += [ |
| 52 "vector_icons.cc.template", | 70 "vector_icons.cc.template", |
| 53 "vector_icons.h.template", | 71 "vector_icons.h.template", |
| 54 ] | 72 ] |
| (...skipping 15 matching lines...) Expand all Loading... |
| 70 source_set("vector_icons") { | 88 source_set("vector_icons") { |
| 71 sources = get_target_outputs(":aggregate_vector_icons") | 89 sources = get_target_outputs(":aggregate_vector_icons") |
| 72 sources += [ "//ui/gfx/vector_icon_types.h" ] | 90 sources += [ "//ui/gfx/vector_icon_types.h" ] |
| 73 | 91 |
| 74 deps = [ | 92 deps = [ |
| 75 ":aggregate_vector_icons", | 93 ":aggregate_vector_icons", |
| 76 "//base", | 94 "//base", |
| 77 "//skia", | 95 "//skia", |
| 78 ] | 96 ] |
| 79 } | 97 } |
| OLD | NEW |