| 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 | 7 |
| 8 component("app_list") { | 8 component("app_list") { |
| 9 sources = [ | 9 sources = [ |
| 10 "app_list_constants.cc", | 10 "app_list_constants.cc", |
| 11 "app_list_constants.h", | 11 "app_list_constants.h", |
| 12 "app_list_controller.h", |
| 12 "app_list_export.h", | 13 "app_list_export.h", |
| 13 "app_list_folder_item.cc", | 14 "app_list_folder_item.cc", |
| 14 "app_list_folder_item.h", | 15 "app_list_folder_item.h", |
| 15 "app_list_item.cc", | 16 "app_list_item.cc", |
| 16 "app_list_item.h", | 17 "app_list_item.h", |
| 17 "app_list_item_list.cc", | 18 "app_list_item_list.cc", |
| 18 "app_list_item_list.h", | 19 "app_list_item_list.h", |
| 19 "app_list_item_list_observer.h", | 20 "app_list_item_list_observer.h", |
| 20 "app_list_item_observer.h", | 21 "app_list_item_observer.h", |
| 22 "app_list_layout_delegate.h", |
| 21 "app_list_menu.cc", | 23 "app_list_menu.cc", |
| 22 "app_list_menu.h", | 24 "app_list_menu.h", |
| 23 "app_list_model.cc", | 25 "app_list_model.cc", |
| 24 "app_list_model.h", | 26 "app_list_model.h", |
| 25 "app_list_model_observer.h", | 27 "app_list_model_observer.h", |
| 26 "app_list_switches.cc", | 28 "app_list_switches.cc", |
| 27 "app_list_switches.h", | 29 "app_list_switches.h", |
| 28 "app_list_view_delegate.cc", | 30 "app_list_view_delegate.cc", |
| 29 "app_list_view_delegate.h", | 31 "app_list_view_delegate.h", |
| 30 "folder_image.cc", | 32 "folder_image.cc", |
| (...skipping 303 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 334 "cocoa/app_list_view_controller_unittest.mm", | 336 "cocoa/app_list_view_controller_unittest.mm", |
| 335 "cocoa/app_list_window_controller_unittest.mm", | 337 "cocoa/app_list_window_controller_unittest.mm", |
| 336 "cocoa/apps_grid_controller_unittest.mm", | 338 "cocoa/apps_grid_controller_unittest.mm", |
| 337 "cocoa/apps_search_box_controller_unittest.mm", | 339 "cocoa/apps_search_box_controller_unittest.mm", |
| 338 "cocoa/apps_search_results_controller_unittest.mm", | 340 "cocoa/apps_search_results_controller_unittest.mm", |
| 339 "cocoa/test/apps_grid_controller_test_helper.h", | 341 "cocoa/test/apps_grid_controller_test_helper.h", |
| 340 "cocoa/test/apps_grid_controller_test_helper.mm", | 342 "cocoa/test/apps_grid_controller_test_helper.mm", |
| 341 ] | 343 ] |
| 342 } | 344 } |
| 343 } | 345 } |
| OLD | NEW |