| 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 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 75 "location_on.icon", | 75 "location_on.icon", |
| 76 "lock.icon", | 76 "lock.icon", |
| 77 "media_router_active.icon", | 77 "media_router_active.icon", |
| 78 "media_router_error.icon", | 78 "media_router_error.icon", |
| 79 "media_router_idle.icon", | 79 "media_router_idle.icon", |
| 80 "media_router_warning.icon", | 80 "media_router_warning.icon", |
| 81 "menu_check.1x.icon", | 81 "menu_check.1x.icon", |
| 82 "menu_check.icon", | 82 "menu_check.icon", |
| 83 "menu_radio_empty.icon", | 83 "menu_radio_empty.icon", |
| 84 "menu_radio_selected.icon", | 84 "menu_radio_selected.icon", |
| 85 "microphone.icon", |
| 85 "midi.icon", | 86 "midi.icon", |
| 86 "mixed_content.icon", | 87 "mixed_content.icon", |
| 87 "mode_edit.icon", | 88 "mode_edit.icon", |
| 88 "my_location.icon", | 89 "my_location.icon", |
| 89 "navigate_back.1x.icon", | 90 "navigate_back.1x.icon", |
| 90 "navigate_back.icon", | 91 "navigate_back.icon", |
| 91 "navigate_forward.1x.icon", | 92 "navigate_forward.1x.icon", |
| 92 "navigate_forward.icon", | 93 "navigate_forward.icon", |
| 93 "navigate_home.1x.icon", | 94 "navigate_home.1x.icon", |
| 94 "navigate_home.icon", | 95 "navigate_home.icon", |
| (...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 238 "../vector_icon_types.h", | 239 "../vector_icon_types.h", |
| 239 "../vector_icons_public.h", | 240 "../vector_icons_public.h", |
| 240 ] | 241 ] |
| 241 | 242 |
| 242 deps = [ | 243 deps = [ |
| 243 ":aggregate_vector_icons", | 244 ":aggregate_vector_icons", |
| 244 "//base", | 245 "//base", |
| 245 "//skia", | 246 "//skia", |
| 246 ] | 247 ] |
| 247 } | 248 } |
| OLD | NEW |