| 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/ui.gni") | 5 import("//build/config/ui.gni") |
| 6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
| 7 import("//ui/vector_icons/vector_icons.gni") | 7 import("//ui/vector_icons/vector_icons.gni") |
| 8 | 8 |
| 9 aggregate_vector_icons("app_list_vector_icons") { | 9 aggregate_vector_icons("app_list_vector_icons") { |
| 10 icon_directory = "vector_icons" | 10 icon_directory = "vector_icons" |
| 11 | 11 |
| 12 icons = [ | 12 icons = [ |
| 13 "ic_badge_instant.1x.icon", | |
| 14 "ic_badge_instant.icon", | |
| 15 "ic_badge_play.1x.icon", | |
| 16 "ic_badge_play.icon", | |
| 17 "ic_google_black.1x.icon", | 13 "ic_google_black.1x.icon", |
| 18 "ic_google_black.icon", | 14 "ic_google_black.icon", |
| 19 "ic_mic_black.1x.icon", | 15 "ic_mic_black.1x.icon", |
| 20 "ic_mic_black.icon", | 16 "ic_mic_black.icon", |
| 21 ] | 17 ] |
| 22 } | 18 } |
| 23 | 19 |
| 24 component("app_list") { | 20 component("app_list") { |
| 25 sources = [ | 21 sources = [ |
| 26 "app_list_constants.cc", | 22 "app_list_constants.cc", |
| (...skipping 273 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 300 "views/test/apps_grid_view_test_api.cc", | 296 "views/test/apps_grid_view_test_api.cc", |
| 301 "views/test/apps_grid_view_test_api.h", | 297 "views/test/apps_grid_view_test_api.h", |
| 302 ] | 298 ] |
| 303 deps += [ | 299 deps += [ |
| 304 "//ui/accessibility", | 300 "//ui/accessibility", |
| 305 "//ui/views", | 301 "//ui/views", |
| 306 "//ui/views:test_support", | 302 "//ui/views:test_support", |
| 307 ] | 303 ] |
| 308 } | 304 } |
| 309 } | 305 } |
| OLD | NEW |