Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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 action("aggregate_vector_icons") { | 5 action("aggregate_vector_icons") { |
| 6 visibility = [ ":*" ] | 6 visibility = [ ":*" ] |
| 7 | 7 |
| 8 script = "//ui/gfx/vector_icons/aggregate_vector_icons.py" | 8 script = "//ui/gfx/vector_icons/aggregate_vector_icons.py" |
| 9 | 9 |
| 10 icons = [ | 10 icons = [ |
| 11 "shelf_applist.1x.icon", | |
|
James Cook
2016/09/08 20:23:44
Thanks for migrating these into //ash.
| |
| 12 "shelf_applist.icon", | |
| 13 "shelf_notifications.1x.icon", | |
| 14 "shelf_notifications.icon", | |
| 11 "system_menu_keyboard.1x.icon", | 15 "system_menu_keyboard.1x.icon", |
| 12 "system_menu_keyboard.icon", | 16 "system_menu_keyboard.icon", |
| 13 ] | 17 ] |
| 14 | 18 |
| 15 output_cc = "$target_gen_dir/vector_icons.cc" | 19 output_cc = "$target_gen_dir/vector_icons.cc" |
| 16 output_h = "$target_gen_dir/vector_icons.h" | 20 output_h = "$target_gen_dir/vector_icons.h" |
| 17 | 21 |
| 18 inputs = icons | 22 inputs = icons |
| 19 inputs += [ | 23 inputs += [ |
| 20 "vector_icons.cc.template", | 24 "vector_icons.cc.template", |
| (...skipping 17 matching lines...) Expand all Loading... | |
| 38 source_set("vector_icons") { | 42 source_set("vector_icons") { |
| 39 sources = get_target_outputs(":aggregate_vector_icons") | 43 sources = get_target_outputs(":aggregate_vector_icons") |
| 40 sources += [ "//ui/gfx/vector_icon_types.h" ] | 44 sources += [ "//ui/gfx/vector_icon_types.h" ] |
| 41 | 45 |
| 42 deps = [ | 46 deps = [ |
| 43 ":aggregate_vector_icons", | 47 ":aggregate_vector_icons", |
| 44 "//base", | 48 "//base", |
| 45 "//skia", | 49 "//skia", |
| 46 ] | 50 ] |
| 47 } | 51 } |
| OLD | NEW |