| 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("chrome_vector_icons") { | 8 aggregate_vector_icons("chrome_vector_icons") { |
| 9 icon_directory = "." | 9 icon_directory = "." |
| 10 | 10 |
| (...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 107 icons += [ "open_in_phone.icon" ] | 107 icons += [ "open_in_phone.icon" ] |
| 108 } | 108 } |
| 109 | 109 |
| 110 if (is_chromeos) { | 110 if (is_chromeos) { |
| 111 icons += [ "arc_migrate_encryption_notification.icon" ] | 111 icons += [ "arc_migrate_encryption_notification.icon" ] |
| 112 } | 112 } |
| 113 } | 113 } |
| 114 | 114 |
| 115 source_set("vector_icons") { | 115 source_set("vector_icons") { |
| 116 sources = get_target_outputs(":chrome_vector_icons") | 116 sources = get_target_outputs(":chrome_vector_icons") |
| 117 sources += [ "//ui/gfx/vector_icon_types.h" ] | |
| 118 | 117 |
| 119 deps = [ | 118 deps = [ |
| 120 ":chrome_vector_icons", | 119 ":chrome_vector_icons", |
| 121 "//base", | 120 "//base", |
| 122 "//skia", | 121 "//skia", |
| 122 "//ui/gfx", |
| 123 ] | 123 ] |
| 124 } | 124 } |
| OLD | NEW |