| 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 | 6 |
| 7 component("app_list") { | 7 component("app_list") { |
| 8 sources = [ | 8 sources = [ |
| 9 "app_list_constants.cc", | 9 "app_list_constants.cc", |
| 10 "app_list_constants.h", | 10 "app_list_constants.h", |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 "app_list_menu.h", | 21 "app_list_menu.h", |
| 22 "app_list_model.cc", | 22 "app_list_model.cc", |
| 23 "app_list_model.h", | 23 "app_list_model.h", |
| 24 "app_list_model_observer.h", | 24 "app_list_model_observer.h", |
| 25 "app_list_switches.cc", | 25 "app_list_switches.cc", |
| 26 "app_list_switches.h", | 26 "app_list_switches.h", |
| 27 "app_list_view_delegate.cc", | 27 "app_list_view_delegate.cc", |
| 28 "app_list_view_delegate.h", | 28 "app_list_view_delegate.h", |
| 29 "folder_image.cc", | 29 "folder_image.cc", |
| 30 "folder_image.h", | 30 "folder_image.h", |
| 31 "folder_image_source.cc", | |
| 32 "folder_image_source.h", | |
| 33 "pagination_controller.cc", | 31 "pagination_controller.cc", |
| 34 "pagination_controller.h", | 32 "pagination_controller.h", |
| 35 "pagination_model.cc", | 33 "pagination_model.cc", |
| 36 "pagination_model.h", | 34 "pagination_model.h", |
| 37 "pagination_model_observer.h", | 35 "pagination_model_observer.h", |
| 38 "search_box_model.cc", | 36 "search_box_model.cc", |
| 39 "search_box_model.h", | 37 "search_box_model.h", |
| 40 "search_box_model_observer.h", | 38 "search_box_model_observer.h", |
| 41 "search_controller.cc", | 39 "search_controller.cc", |
| 42 "search_controller.h", | 40 "search_controller.h", |
| (...skipping 225 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 268 "cocoa/app_list_view_controller_unittest.mm", | 266 "cocoa/app_list_view_controller_unittest.mm", |
| 269 "cocoa/app_list_window_controller_unittest.mm", | 267 "cocoa/app_list_window_controller_unittest.mm", |
| 270 "cocoa/apps_grid_controller_unittest.mm", | 268 "cocoa/apps_grid_controller_unittest.mm", |
| 271 "cocoa/apps_search_box_controller_unittest.mm", | 269 "cocoa/apps_search_box_controller_unittest.mm", |
| 272 "cocoa/apps_search_results_controller_unittest.mm", | 270 "cocoa/apps_search_results_controller_unittest.mm", |
| 273 "cocoa/test/apps_grid_controller_test_helper.h", | 271 "cocoa/test/apps_grid_controller_test_helper.h", |
| 274 "cocoa/test/apps_grid_controller_test_helper.mm", | 272 "cocoa/test/apps_grid_controller_test_helper.mm", |
| 275 ] | 273 ] |
| 276 } | 274 } |
| 277 } | 275 } |
| OLD | NEW |