| 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 "browser_tools.icon", | 11 "browser_tools.icon", |
| 12 "browser_tools_error.icon", | 12 "browser_tools_error.icon", |
| 13 "browser_tools_update.icon", | 13 "browser_tools_update.icon", |
| 14 "laptop.icon", |
| 14 "navigate_back.1x.icon", | 15 "navigate_back.1x.icon", |
| 15 "navigate_back.icon", | 16 "navigate_back.icon", |
| 16 "navigate_forward.1x.icon", | 17 "navigate_forward.1x.icon", |
| 17 "navigate_forward.icon", | 18 "navigate_forward.icon", |
| 18 "navigate_home.1x.icon", | 19 "navigate_home.1x.icon", |
| 19 "navigate_home.icon", | 20 "navigate_home.icon", |
| 20 "navigate_reload.1x.icon", | 21 "navigate_reload.1x.icon", |
| 21 "navigate_reload.icon", | 22 "navigate_reload.icon", |
| 22 "navigate_stop.1x.icon", | 23 "navigate_stop.1x.icon", |
| 23 "navigate_stop.icon", | 24 "navigate_stop.icon", |
| 25 "smartphone.icon", |
| 26 "tab.icon", |
| 27 "tab_audio.1x.icon", |
| 28 "tab_audio.icon", |
| 29 "tab_audio_muting.1x.icon", |
| 30 "tab_audio_muting.icon", |
| 31 "tab_bluetooth_connected.icon", |
| 32 "tab_close_hovered_pressed.1x.icon", |
| 33 "tab_close_hovered_pressed.icon", |
| 34 "tab_close_normal.1x.icon", |
| 35 "tab_close_normal.icon", |
| 36 "tab_media_capturing.icon", |
| 37 "tab_media_recording.icon", |
| 38 "tab_usb_connected.1x.icon", |
| 39 "tab_usb_connected.icon", |
| 40 "tablet.icon", |
| 24 ] | 41 ] |
| 25 | 42 |
| 26 output_cc = "$target_gen_dir/vector_icons.cc" | 43 output_cc = "$target_gen_dir/vector_icons.cc" |
| 27 output_h = "$target_gen_dir/vector_icons.h" | 44 output_h = "$target_gen_dir/vector_icons.h" |
| 28 | 45 |
| 29 inputs = icons | 46 inputs = icons |
| 30 inputs += [ | 47 inputs += [ |
| 31 "vector_icons.cc.template", | 48 "vector_icons.cc.template", |
| 32 "vector_icons.h.template", | 49 "vector_icons.h.template", |
| 33 ] | 50 ] |
| (...skipping 15 matching lines...) Expand all Loading... |
| 49 source_set("vector_icons") { | 66 source_set("vector_icons") { |
| 50 sources = get_target_outputs(":aggregate_vector_icons") | 67 sources = get_target_outputs(":aggregate_vector_icons") |
| 51 sources += [ "//ui/gfx/vector_icon_types.h" ] | 68 sources += [ "//ui/gfx/vector_icon_types.h" ] |
| 52 | 69 |
| 53 deps = [ | 70 deps = [ |
| 54 ":aggregate_vector_icons", | 71 ":aggregate_vector_icons", |
| 55 "//base", | 72 "//base", |
| 56 "//skia", | 73 "//skia", |
| 57 ] | 74 ] |
| 58 } | 75 } |
| OLD | NEW |