| OLD | NEW |
| 1 # Copyright 2017 The Chromium Authors. All rights reserved. | 1 # Copyright 2017 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/util/branding.gni") | 5 import("//build/util/branding.gni") |
| 6 import("//ui/vector_icons/vector_icons.gni") | 6 import("//ui/vector_icons/vector_icons.gni") |
| 7 | 7 |
| 8 aggregate_vector_icons("ui_vector_icons") { | 8 aggregate_vector_icons("ui_vector_icons") { |
| 9 icon_directory = "." | 9 icon_directory = "." |
| 10 | 10 |
| 11 icons = [ | 11 icons = [ |
| 12 "back_arrow.1x.icon", | 12 "back_arrow.1x.icon", |
| 13 "back_arrow.icon", | 13 "back_arrow.icon", |
| 14 "close.1x.icon", | 14 "close.1x.icon", |
| 15 "close.icon", | 15 "close.icon", |
| 16 "error_circle.icon", | 16 "error_circle.icon", |
| 17 "extension.icon", | |
| 18 "forward_arrow.1x.icon", | 17 "forward_arrow.1x.icon", |
| 19 "forward_arrow.icon", | 18 "forward_arrow.icon", |
| 20 "location_on.icon", | 19 "location_on.icon", |
| 21 "media_router_active.icon", | 20 "media_router_active.icon", |
| 22 "media_router_error.icon", | 21 "media_router_error.icon", |
| 23 "media_router_idle.icon", | 22 "media_router_idle.icon", |
| 24 "media_router_warning.icon", | 23 "media_router_warning.icon", |
| 25 "microphone.icon", | 24 "microphone.icon", |
| 26 "midi.icon", | 25 "midi.icon", |
| 27 "notifications.icon", | 26 "notifications.icon", |
| 28 "protocol_handler.icon", | 27 "protocol_handler.icon", |
| 29 "videocam.icon", | 28 "videocam.icon", |
| 30 "warning.icon", | 29 "warning.icon", |
| 31 ] | 30 ] |
| 32 } | 31 } |
| 33 | 32 |
| 34 static_library("vector_icons") { | 33 static_library("vector_icons") { |
| 35 sources = get_target_outputs(":ui_vector_icons") | 34 sources = get_target_outputs(":ui_vector_icons") |
| 36 sources += [ "//ui/gfx/vector_icon_types.h" ] | 35 sources += [ "//ui/gfx/vector_icon_types.h" ] |
| 37 | 36 |
| 38 deps = [ | 37 deps = [ |
| 39 ":ui_vector_icons", | 38 ":ui_vector_icons", |
| 40 "//base", | 39 "//base", |
| 41 "//skia", | 40 "//skia", |
| 42 ] | 41 ] |
| 43 } | 42 } |
| OLD | NEW |