| 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 16 matching lines...) Expand all Loading... |
| 27 "default_favicon.icon", | 27 "default_favicon.icon", |
| 28 "eol.icon", | 28 "eol.icon", |
| 29 "error_circle.icon", | 29 "error_circle.icon", |
| 30 "extension.icon", | 30 "extension.icon", |
| 31 "extension_crashed.icon", | 31 "extension_crashed.icon", |
| 32 "file_download.icon", | 32 "file_download.icon", |
| 33 "file_download_incognito.1x.icon", | 33 "file_download_incognito.1x.icon", |
| 34 "file_download_incognito.icon", | 34 "file_download_incognito.icon", |
| 35 "file_download_shelf.icon", | 35 "file_download_shelf.icon", |
| 36 "fullscreen.icon", | 36 "fullscreen.icon", |
| 37 "g_search.icon", |
| 37 "globe.icon", | 38 "globe.icon", |
| 38 "help_outline.icon", | 39 "help_outline.icon", |
| 39 "image.icon", | 40 "image.icon", |
| 40 "info_outline.icon", | 41 "info_outline.icon", |
| 41 "location_on.icon", | 42 "location_on.icon", |
| 42 "lock.icon", | 43 "lock.icon", |
| 43 "media_router_active.icon", | 44 "media_router_active.icon", |
| 44 "media_router_error.icon", | 45 "media_router_error.icon", |
| 45 "media_router_idle.icon", | 46 "media_router_idle.icon", |
| 46 "media_router_warning.icon", | 47 "media_router_warning.icon", |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 106 "../vector_icon_types.h", | 107 "../vector_icon_types.h", |
| 107 "../vector_icons_public.h", | 108 "../vector_icons_public.h", |
| 108 ] | 109 ] |
| 109 | 110 |
| 110 deps = [ | 111 deps = [ |
| 111 ":aggregate_vector_icons", | 112 ":aggregate_vector_icons", |
| 112 "//base", | 113 "//base", |
| 113 "//skia", | 114 "//skia", |
| 114 ] | 115 ] |
| 115 } | 116 } |
| OLD | NEW |