Chromium Code Reviews| 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") |
|
sky
2017/02/22 21:10:43
Can you add an OWNERS file here with your name in
Evan Stade
2017/02/22 21:30:11
Done.
| |
| 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 |
| 11 icons = [ | 11 icons = [ |
| 12 "apps.icon", | |
|
sky
2017/02/22 21:10:43
Keep sorted?
Evan Stade
2017/02/22 21:30:11
whoops. I thought gn format would do that for me.
| |
| 13 "cookie.icon", | |
| 14 "globe.icon", | |
| 15 "paintbrush.icon", | |
| 16 "sad_tab.icon", | |
| 12 "autologin.icon", | 17 "autologin.icon", |
| 13 "bluetooth_connected.icon", | 18 "bluetooth_connected.icon", |
| 14 "browser_tools.icon", | 19 "browser_tools.icon", |
| 15 "browser_tools_error.icon", | 20 "browser_tools_error.icon", |
| 16 "browser_tools_update.icon", | 21 "browser_tools_update.icon", |
| 17 "caret_down.1x.icon", | 22 "caret_down.1x.icon", |
| 18 "caret_down.icon", | 23 "caret_down.icon", |
| 19 "caret_up.1x.icon", | 24 "caret_up.1x.icon", |
| 20 "caret_up.icon", | 25 "caret_up.icon", |
| 21 "crashed_tab.icon", | 26 "crashed_tab.icon", |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 72 source_set("vector_icons") { | 77 source_set("vector_icons") { |
| 73 sources = get_target_outputs(":chrome_vector_icons") | 78 sources = get_target_outputs(":chrome_vector_icons") |
| 74 sources += [ "//ui/gfx/vector_icon_types.h" ] | 79 sources += [ "//ui/gfx/vector_icon_types.h" ] |
| 75 | 80 |
| 76 deps = [ | 81 deps = [ |
| 77 ":chrome_vector_icons", | 82 ":chrome_vector_icons", |
| 78 "//base", | 83 "//base", |
| 79 "//skia", | 84 "//skia", |
| 80 ] | 85 ] |
| 81 } | 86 } |
| OLD | NEW |