| 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("//ui/vector_icons/vector_icons.gni") | 5 import("//ui/vector_icons/vector_icons.gni") |
| 6 | 6 |
| 7 aggregate_vector_icons("app_list_vector_icons") { | 7 aggregate_vector_icons("app_list_vector_icons") { |
| 8 icon_directory = "." | 8 icon_directory = "." |
| 9 | 9 |
| 10 icons = [ | 10 icons = [ |
| 11 "ic_arrow_up.1x.icon", | |
| 12 "ic_arrow_up.icon", | |
| 13 "ic_badge_instant.1x.icon", | 11 "ic_badge_instant.1x.icon", |
| 14 "ic_badge_instant.icon", | 12 "ic_badge_instant.icon", |
| 15 "ic_badge_play.1x.icon", | 13 "ic_badge_play.1x.icon", |
| 16 "ic_badge_play.icon", | 14 "ic_badge_play.icon", |
| 17 "ic_google_black.1x.icon", | 15 "ic_google_black.1x.icon", |
| 18 "ic_google_black.icon", | 16 "ic_google_black.icon", |
| 19 "ic_mic_black.1x.icon", | 17 "ic_mic_black.1x.icon", |
| 20 "ic_mic_black.icon", | 18 "ic_mic_black.icon", |
| 21 ] | 19 ] |
| 22 } | 20 } |
| 23 | 21 |
| 24 source_set("vector_icons") { | 22 source_set("vector_icons") { |
| 25 sources = get_target_outputs(":app_list_vector_icons") | 23 sources = get_target_outputs(":app_list_vector_icons") |
| 26 | 24 |
| 27 deps = [ | 25 deps = [ |
| 28 ":app_list_vector_icons", | 26 ":app_list_vector_icons", |
| 29 "//skia", | 27 "//skia", |
| 30 ] | 28 ] |
| 31 } | 29 } |
| OLD | NEW |