| 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" |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 57 "supervisor_account_circle.icon", | 57 "supervisor_account_circle.icon", |
| 58 "sync_problem.icon", | 58 "sync_problem.icon", |
| 59 "user_account_avatar.icon", | 59 "user_account_avatar.icon", |
| 60 "videocam.icon", | 60 "videocam.icon", |
| 61 "warning.icon", | 61 "warning.icon", |
| 62 "warning_badge.icon", | 62 "warning_badge.icon", |
| 63 "web.icon", | 63 "web.icon", |
| 64 "${branding_path_component}/product.icon", | 64 "${branding_path_component}/product.icon", |
| 65 ] | 65 ] |
| 66 | 66 |
| 67 if (is_mac) { |
| 68 icons += [ "google_search_mac_touchbar.icon" ] |
| 69 } |
| 70 |
| 67 output_cc = "$target_gen_dir/vector_icons.cc" | 71 output_cc = "$target_gen_dir/vector_icons.cc" |
| 68 output_h = "$target_gen_dir/vector_icons.h" | 72 output_h = "$target_gen_dir/vector_icons.h" |
| 69 | 73 |
| 70 inputs = icons | 74 inputs = icons |
| 71 inputs += [ | 75 inputs += [ |
| 72 "vector_icons.cc.template", | 76 "vector_icons.cc.template", |
| 73 "vector_icons.h.template", | 77 "vector_icons.h.template", |
| 74 ] | 78 ] |
| 75 outputs = [ | 79 outputs = [ |
| 76 output_cc, | 80 output_cc, |
| (...skipping 17 matching lines...) Expand all Loading... |
| 94 "../vector_icon_types.h", | 98 "../vector_icon_types.h", |
| 95 "../vector_icons_public.h", | 99 "../vector_icons_public.h", |
| 96 ] | 100 ] |
| 97 | 101 |
| 98 deps = [ | 102 deps = [ |
| 99 ":aggregate_vector_icons", | 103 ":aggregate_vector_icons", |
| 100 "//base", | 104 "//base", |
| 101 "//skia", | 105 "//skia", |
| 102 ] | 106 ] |
| 103 } | 107 } |
| OLD | NEW |