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