Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(16)

Side by Side Diff: ui/gfx/vector_icons/BUILD.gn

Issue 2251643011: Move Ash-specific vector icons to ash/common/resources (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix sources again Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « ui/gfx/vector_icon_types.h ('k') | ui/gfx/vector_icons/aggregate_vector_icons.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 action("aggregate_vector_icons") { 5 action("aggregate_vector_icons") {
6 visibility = [ ":*" ] 6 visibility = [ ":*" ]
7 7
8 script = "aggregate_vector_icons.py" 8 script = "aggregate_vector_icons.py"
9 9
10 icons = [ 10 icons = [
(...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after
164 "system_menu_brightness.1x.icon", 164 "system_menu_brightness.1x.icon",
165 "system_menu_brightness.icon", 165 "system_menu_brightness.icon",
166 "system_menu_business.1x.icon", 166 "system_menu_business.1x.icon",
167 "system_menu_business.icon", 167 "system_menu_business.icon",
168 "system_menu_caps_lock.1x.icon", 168 "system_menu_caps_lock.1x.icon",
169 "system_menu_caps_lock.icon", 169 "system_menu_caps_lock.icon",
170 "system_menu_cast.1x.icon", 170 "system_menu_cast.1x.icon",
171 "system_menu_cast.icon", 171 "system_menu_cast.icon",
172 "system_menu_child_user.1x.icon", 172 "system_menu_child_user.1x.icon",
173 "system_menu_child_user.icon", 173 "system_menu_child_user.icon",
174 "system_menu_keyboard.1x.icon",
175 "system_menu_keyboard.icon",
176 "system_menu_rotation_lock_auto.1x.icon", 174 "system_menu_rotation_lock_auto.1x.icon",
177 "system_menu_rotation_lock_auto.icon", 175 "system_menu_rotation_lock_auto.icon",
178 "system_menu_rotation_lock_locked.1x.icon", 176 "system_menu_rotation_lock_locked.1x.icon",
179 "system_menu_rotation_lock_locked.icon", 177 "system_menu_rotation_lock_locked.icon",
180 "system_menu_screen_share.1x.icon", 178 "system_menu_screen_share.1x.icon",
181 "system_menu_screen_share.icon", 179 "system_menu_screen_share.icon",
182 "system_menu_supervised_user.1x.icon", 180 "system_menu_supervised_user.1x.icon",
183 "system_menu_supervised_user.icon", 181 "system_menu_supervised_user.icon",
184 "system_menu_sms.icon", 182 "system_menu_sms.icon",
185 "system_menu_timer.1x.icon", 183 "system_menu_timer.1x.icon",
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
261 output_h, 259 output_h,
262 ] 260 ]
263 261
264 response_file_contents = rebase_path(icons, root_build_dir) 262 response_file_contents = rebase_path(icons, root_build_dir)
265 263
266 args = [ 264 args = [
267 "--working_directory=" + rebase_path("./"), 265 "--working_directory=" + rebase_path("./"),
268 "--file_list={{response_file_name}}", 266 "--file_list={{response_file_name}}",
269 "--output_cc=" + rebase_path(output_cc, root_build_dir), 267 "--output_cc=" + rebase_path(output_cc, root_build_dir),
270 "--output_h=" + rebase_path(output_h, root_build_dir), 268 "--output_h=" + rebase_path(output_h, root_build_dir),
269 "--use_legacy_template",
271 ] 270 ]
272 } 271 }
273 272
274 source_set("vector_icons") { 273 source_set("vector_icons") {
275 sources = get_target_outputs(":aggregate_vector_icons") 274 sources = get_target_outputs(":aggregate_vector_icons")
276 sources += [ 275 sources += [
277 "../vector_icon_types.h", 276 "../vector_icon_types.h",
278 "../vector_icons_public.h", 277 "../vector_icons_public.h",
279 ] 278 ]
280 279
281 deps = [ 280 deps = [
282 ":aggregate_vector_icons", 281 ":aggregate_vector_icons",
283 "//base", 282 "//base",
284 "//skia", 283 "//skia",
285 ] 284 ]
286 } 285 }
OLDNEW
« no previous file with comments | « ui/gfx/vector_icon_types.h ('k') | ui/gfx/vector_icons/aggregate_vector_icons.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698