| 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 # NB: This is a deprecated vector icon target that should be removed. Add vector | 7 # NB: This is a deprecated vector icon target that should be removed. Add vector |
| 8 # icons to a more specific target, or ui/vector_icons if ui/ is the right place | 8 # icons to a more specific target, or ui/vector_icons if ui/ is the right place |
| 9 # for them. TODO(estade): remove this target. | 9 # for them. TODO(estade): remove this target. |
| 10 action("aggregate_vector_icons") { | 10 action("aggregate_vector_icons") { |
| 11 visibility = [ ":*" ] | 11 visibility = [ ":*" ] |
| 12 | 12 |
| 13 script = "aggregate_vector_icons.py" | 13 script = "aggregate_vector_icons.py" |
| 14 | 14 |
| 15 icons = [ | 15 icons = [ |
| 16 "account_box.icon", | |
| 17 "account_child.icon", | |
| 18 "account_child_circle.icon", | |
| 19 "account_circle.icon", | |
| 20 "business.icon", | 16 "business.icon", |
| 21 "check_circle.1x.icon", | 17 "check_circle.1x.icon", |
| 22 "check_circle.icon", | 18 "check_circle.icon", |
| 23 "close_all.icon", | |
| 24 "default_favicon.icon", | 19 "default_favicon.icon", |
| 25 "eol.icon", | 20 "eol.icon", |
| 26 "fullscreen.icon", | 21 "fullscreen.icon", |
| 27 "help_outline.icon", | 22 "help_outline.icon", |
| 28 "info_outline.icon", | 23 "info_outline.icon", |
| 29 "lock.icon", | |
| 30 "mode_edit.icon", | |
| 31 "notifications.icon", | 24 "notifications.icon", |
| 32 "notifications_off.icon", | 25 "notifications_off.icon", |
| 33 | 26 |
| 34 # TODO(estade): this is the same as the one in components/omnibox, but it's | 27 # TODO(estade): this is the same as the one in components/omnibox, but it's |
| 35 # referenced from Ash. De-dupe this soon. | 28 # referenced from Ash. De-dupe this soon. |
| 36 "omnibox_search.icon", | 29 "omnibox_search.icon", |
| 37 "pdf.1x.icon", | 30 "pdf.1x.icon", |
| 38 "pdf.icon", | 31 "pdf.icon", |
| 39 "photo_camera.icon", | |
| 40 "remove_box.icon", | |
| 41 "remove_circle.icon", | |
| 42 "settings.icon", | |
| 43 "supervisor_account.icon", | |
| 44 "supervisor_account_circle.icon", | |
| 45 "sync_problem.icon", | |
| 46 "user_account_avatar.icon", | |
| 47 "warning.icon", | 32 "warning.icon", |
| 48 "web.icon", | 33 "web.icon", |
| 49 ] | 34 ] |
| 50 | 35 |
| 51 if (is_mac) { | 36 if (is_mac) { |
| 52 icons += [ "google_search_mac_touchbar.icon" ] | 37 icons += [ "google_search_mac_touchbar.icon" ] |
| 53 } | 38 } |
| 54 | 39 |
| 55 output_cc = "$target_gen_dir/vector_icons.cc" | 40 output_cc = "$target_gen_dir/vector_icons.cc" |
| 56 output_h = "$target_gen_dir/vector_icons.h" | 41 output_h = "$target_gen_dir/vector_icons.h" |
| (...skipping 25 matching lines...) Expand all Loading... |
| 82 "../vector_icon_types.h", | 67 "../vector_icon_types.h", |
| 83 "../vector_icons_public.h", | 68 "../vector_icons_public.h", |
| 84 ] | 69 ] |
| 85 | 70 |
| 86 deps = [ | 71 deps = [ |
| 87 ":aggregate_vector_icons", | 72 ":aggregate_vector_icons", |
| 88 "//base", | 73 "//base", |
| 89 "//skia", | 74 "//skia", |
| 90 ] | 75 ] |
| 91 } | 76 } |
| OLD | NEW |