| 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_rating.1x.icon", |
| 14 "ic_badge_rating.icon", |
| 13 "ic_google_black.1x.icon", | 15 "ic_google_black.1x.icon", |
| 14 "ic_google_black.icon", | 16 "ic_google_black.icon", |
| 15 "ic_mic_black.1x.icon", | 17 "ic_mic_black.1x.icon", |
| 16 "ic_mic_black.icon", | 18 "ic_mic_black.icon", |
| 17 ] | 19 ] |
| 18 } | 20 } |
| 19 | 21 |
| 20 component("app_list") { | 22 component("app_list") { |
| 21 sources = [ | 23 sources = [ |
| 22 "app_list_constants.cc", | 24 "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", | 298 "views/test/apps_grid_view_test_api.cc", |
| 297 "views/test/apps_grid_view_test_api.h", | 299 "views/test/apps_grid_view_test_api.h", |
| 298 ] | 300 ] |
| 299 deps += [ | 301 deps += [ |
| 300 "//ui/accessibility", | 302 "//ui/accessibility", |
| 301 "//ui/views", | 303 "//ui/views", |
| 302 "//ui/views:test_support", | 304 "//ui/views:test_support", |
| 303 ] | 305 ] |
| 304 } | 306 } |
| 305 } | 307 } |
| OLD | NEW |