| 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 import("//build/config/chrome_build.gni") | 5 import("//build/config/chrome_build.gni") |
| 6 | 6 |
| 7 action("aggregate_vector_icons") { | 7 action("aggregate_vector_icons") { |
| 8 visibility = [ ":*" ] | 8 visibility = [ ":*" ] |
| 9 | 9 |
| 10 script = "aggregate_vector_icons.py" | 10 script = "aggregate_vector_icons.py" |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 "default_favicon.icon", | 25 "default_favicon.icon", |
| 26 "eol.icon", | 26 "eol.icon", |
| 27 "error_circle.icon", | 27 "error_circle.icon", |
| 28 "extension.icon", | 28 "extension.icon", |
| 29 "extension_crashed.icon", | 29 "extension_crashed.icon", |
| 30 "file_download.icon", | 30 "file_download.icon", |
| 31 "file_download_incognito.1x.icon", | 31 "file_download_incognito.1x.icon", |
| 32 "file_download_incognito.icon", | 32 "file_download_incognito.icon", |
| 33 "file_download_shelf.icon", | 33 "file_download_shelf.icon", |
| 34 "fullscreen.icon", | 34 "fullscreen.icon", |
| 35 "g_search.icon", |
| 35 "globe.icon", | 36 "globe.icon", |
| 36 "help_outline.icon", | 37 "help_outline.icon", |
| 37 "image.icon", | 38 "image.icon", |
| 38 "info_outline.icon", | 39 "info_outline.icon", |
| 39 "location_on.icon", | 40 "location_on.icon", |
| 40 "lock.icon", | 41 "lock.icon", |
| 41 "media_router_active.icon", | 42 "media_router_active.icon", |
| 42 "media_router_error.icon", | 43 "media_router_error.icon", |
| 43 "media_router_idle.icon", | 44 "media_router_idle.icon", |
| 44 "media_router_warning.icon", | 45 "media_router_warning.icon", |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 104 "../vector_icon_types.h", | 105 "../vector_icon_types.h", |
| 105 "../vector_icons_public.h", | 106 "../vector_icons_public.h", |
| 106 ] | 107 ] |
| 107 | 108 |
| 108 deps = [ | 109 deps = [ |
| 109 ":aggregate_vector_icons", | 110 ":aggregate_vector_icons", |
| 110 "//base", | 111 "//base", |
| 111 "//skia", | 112 "//skia", |
| 112 ] | 113 ] |
| 113 } | 114 } |
| OLD | NEW |