| 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") | |
| 8 | |
| 9 aggregate_vector_icons("app_list_vector_icons") { | |
| 10 icon_directory = "vector_icons" | |
| 11 | |
| 12 icons = [ | |
| 13 "ic_google_black.1x.icon", | |
| 14 "ic_google_black.icon", | |
| 15 "ic_mic_black.1x.icon", | |
| 16 "ic_mic_black.icon", | |
| 17 ] | |
| 18 } | |
| 19 | 7 |
| 20 component("app_list") { | 8 component("app_list") { |
| 21 sources = [ | 9 sources = [ |
| 22 "app_list_constants.cc", | 10 "app_list_constants.cc", |
| 23 "app_list_constants.h", | 11 "app_list_constants.h", |
| 24 "app_list_export.h", | 12 "app_list_export.h", |
| 25 "app_list_features.cc", | 13 "app_list_features.cc", |
| 26 "app_list_features.h", | 14 "app_list_features.h", |
| 27 "app_list_folder_item.cc", | 15 "app_list_folder_item.cc", |
| 28 "app_list_folder_item.h", | 16 "app_list_folder_item.h", |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 73 "search_provider.cc", | 61 "search_provider.cc", |
| 74 "search_provider.h", | 62 "search_provider.h", |
| 75 "search_result.cc", | 63 "search_result.cc", |
| 76 "search_result.h", | 64 "search_result.h", |
| 77 "search_result_observer.h", | 65 "search_result_observer.h", |
| 78 "speech_ui_model.cc", | 66 "speech_ui_model.cc", |
| 79 "speech_ui_model.h", | 67 "speech_ui_model.h", |
| 80 "speech_ui_model_observer.h", | 68 "speech_ui_model_observer.h", |
| 81 ] | 69 ] |
| 82 | 70 |
| 83 sources += get_target_outputs(":app_list_vector_icons") | |
| 84 | |
| 85 defines = [ "APP_LIST_IMPLEMENTATION" ] | 71 defines = [ "APP_LIST_IMPLEMENTATION" ] |
| 86 | 72 |
| 87 deps = [ | 73 deps = [ |
| 88 ":app_list_vector_icons", | |
| 89 "//base", | 74 "//base", |
| 90 "//base:i18n", | 75 "//base:i18n", |
| 91 "//base/third_party/dynamic_annotations", | 76 "//base/third_party/dynamic_annotations", |
| 92 "//components/keyed_service/core", | 77 "//components/keyed_service/core", |
| 93 "//components/sync", | 78 "//components/sync", |
| 94 "//skia", | 79 "//skia", |
| 95 "//third_party/icu", | 80 "//third_party/icu", |
| 96 "//ui/accessibility", | 81 "//ui/accessibility", |
| 97 "//ui/app_list/resources", | 82 "//ui/app_list/resources", |
| 83 "//ui/app_list/vector_icons", |
| 98 "//ui/base", | 84 "//ui/base", |
| 99 "//ui/base/ime", | 85 "//ui/base/ime", |
| 100 "//ui/compositor", | 86 "//ui/compositor", |
| 101 "//ui/display", | 87 "//ui/display", |
| 102 "//ui/events", | 88 "//ui/events", |
| 103 "//ui/gfx", | 89 "//ui/gfx", |
| 104 "//ui/gfx/geometry", | 90 "//ui/gfx/geometry", |
| 105 "//ui/resources", | 91 "//ui/resources", |
| 106 "//ui/strings", | 92 "//ui/strings", |
| 107 ] | 93 ] |
| (...skipping 188 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 296 "views/test/apps_grid_view_test_api.cc", | 282 "views/test/apps_grid_view_test_api.cc", |
| 297 "views/test/apps_grid_view_test_api.h", | 283 "views/test/apps_grid_view_test_api.h", |
| 298 ] | 284 ] |
| 299 deps += [ | 285 deps += [ |
| 300 "//ui/accessibility", | 286 "//ui/accessibility", |
| 301 "//ui/views", | 287 "//ui/views", |
| 302 "//ui/views:test_support", | 288 "//ui/views:test_support", |
| 303 ] | 289 ] |
| 304 } | 290 } |
| 305 } | 291 } |
| OLD | NEW |