| 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" |
| 11 | 11 |
| 12 icons = [ | 12 icons = [ |
| 13 "account_box.icon", | 13 "account_box.icon", |
| 14 "account_child.icon", | 14 "account_child.icon", |
| 15 "account_child_circle.icon", | 15 "account_child_circle.icon", |
| 16 "account_circle.icon", | 16 "account_circle.icon", |
| 17 "apps.icon", | 17 "apps.icon", |
| 18 "blocked_badge.icon", | 18 "blocked_badge.icon", |
| 19 "business.icon", | 19 "business.icon", |
| 20 "check_circle.1x.icon", | 20 "check_circle.1x.icon", |
| 21 "check_circle.icon", | 21 "check_circle.icon", |
| 22 "close_all.icon", | 22 "close_all.icon", |
| 23 "code.icon", | 23 "code.icon", |
| 24 "cookie.icon", | 24 "cookie.icon", |
| 25 "default_favicon.icon", | 25 "default_favicon.icon", |
| 26 "eol.icon", | 26 "eol.icon", |
| 27 "error_circle.icon", | |
| 28 "extension.icon", | 27 "extension.icon", |
| 29 "extension_crashed.icon", | 28 "extension_crashed.icon", |
| 30 "file_download.icon", | 29 "file_download.icon", |
| 31 "file_download_incognito.1x.icon", | |
| 32 "file_download_incognito.icon", | |
| 33 "file_download_shelf.icon", | |
| 34 "fullscreen.icon", | 30 "fullscreen.icon", |
| 35 "globe.icon", | 31 "globe.icon", |
| 36 "help_outline.icon", | 32 "help_outline.icon", |
| 37 "image.icon", | 33 "image.icon", |
| 38 "info_outline.icon", | 34 "info_outline.icon", |
| 39 "location_on.icon", | |
| 40 "lock.icon", | 35 "lock.icon", |
| 41 "media_router_active.icon", | |
| 42 "media_router_error.icon", | |
| 43 "media_router_idle.icon", | |
| 44 "media_router_warning.icon", | |
| 45 "microphone.icon", | |
| 46 "midi.icon", | 36 "midi.icon", |
| 47 "mixed_content.icon", | 37 "mixed_content.icon", |
| 48 "mode_edit.icon", | 38 "mode_edit.icon", |
| 49 "my_location.icon", | 39 "my_location.icon", |
| 50 "notifications.icon", | 40 "notifications.icon", |
| 51 "notifications_off.icon", | 41 "notifications_off.icon", |
| 52 | 42 |
| 53 # TODO(estade): this is the same as the one in components/omnibox, but it's | 43 # TODO(estade): this is the same as the one in components/omnibox, but it's |
| 54 # referenced from Ash. De-dupe this soon. | 44 # referenced from Ash. De-dupe this soon. |
| 55 "omnibox_search.icon", | 45 "omnibox_search.icon", |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 104 "../vector_icon_types.h", | 94 "../vector_icon_types.h", |
| 105 "../vector_icons_public.h", | 95 "../vector_icons_public.h", |
| 106 ] | 96 ] |
| 107 | 97 |
| 108 deps = [ | 98 deps = [ |
| 109 ":aggregate_vector_icons", | 99 ":aggregate_vector_icons", |
| 110 "//base", | 100 "//base", |
| 111 "//skia", | 101 "//skia", |
| 112 ] | 102 ] |
| 113 } | 103 } |
| OLD | NEW |