| 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 } |
| 7 | 19 |
| 8 component("app_list") { | 20 component("app_list") { |
| 9 sources = [ | 21 sources = [ |
| 10 "app_list_constants.cc", | 22 "app_list_constants.cc", |
| 11 "app_list_constants.h", | 23 "app_list_constants.h", |
| 12 "app_list_export.h", | 24 "app_list_export.h", |
| 13 "app_list_features.cc", | 25 "app_list_features.cc", |
| 14 "app_list_features.h", | 26 "app_list_features.h", |
| 15 "app_list_folder_item.cc", | 27 "app_list_folder_item.cc", |
| 16 "app_list_folder_item.h", | 28 "app_list_folder_item.h", |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 61 "search_provider.cc", | 73 "search_provider.cc", |
| 62 "search_provider.h", | 74 "search_provider.h", |
| 63 "search_result.cc", | 75 "search_result.cc", |
| 64 "search_result.h", | 76 "search_result.h", |
| 65 "search_result_observer.h", | 77 "search_result_observer.h", |
| 66 "speech_ui_model.cc", | 78 "speech_ui_model.cc", |
| 67 "speech_ui_model.h", | 79 "speech_ui_model.h", |
| 68 "speech_ui_model_observer.h", | 80 "speech_ui_model_observer.h", |
| 69 ] | 81 ] |
| 70 | 82 |
| 83 sources += get_target_outputs(":app_list_vector_icons") |
| 84 |
| 71 defines = [ "APP_LIST_IMPLEMENTATION" ] | 85 defines = [ "APP_LIST_IMPLEMENTATION" ] |
| 72 | 86 |
| 73 deps = [ | 87 deps = [ |
| 88 ":app_list_vector_icons", |
| 74 "//base", | 89 "//base", |
| 75 "//base:i18n", | 90 "//base:i18n", |
| 76 "//base/third_party/dynamic_annotations", | 91 "//base/third_party/dynamic_annotations", |
| 77 "//components/keyed_service/core", | 92 "//components/keyed_service/core", |
| 78 "//components/sync", | 93 "//components/sync", |
| 79 "//skia", | 94 "//skia", |
| 80 "//third_party/icu", | 95 "//third_party/icu", |
| 81 "//ui/accessibility", | 96 "//ui/accessibility", |
| 82 "//ui/app_list/resources", | 97 "//ui/app_list/resources", |
| 83 "//ui/base", | 98 "//ui/base", |
| (...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 274 "views/speech_view_unittest.cc", | 289 "views/speech_view_unittest.cc", |
| 275 "views/test/apps_grid_view_test_api.cc", | 290 "views/test/apps_grid_view_test_api.cc", |
| 276 "views/test/apps_grid_view_test_api.h", | 291 "views/test/apps_grid_view_test_api.h", |
| 277 ] | 292 ] |
| 278 deps += [ | 293 deps += [ |
| 279 "//ui/views", | 294 "//ui/views", |
| 280 "//ui/views:test_support", | 295 "//ui/views:test_support", |
| 281 ] | 296 ] |
| 282 } | 297 } |
| 283 } | 298 } |
| OLD | NEW |