| 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", |
| (...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 117 "views/apps_container_view.cc", | 117 "views/apps_container_view.cc", |
| 118 "views/apps_container_view.h", | 118 "views/apps_container_view.h", |
| 119 "views/apps_grid_view.cc", | 119 "views/apps_grid_view.cc", |
| 120 "views/apps_grid_view.h", | 120 "views/apps_grid_view.h", |
| 121 "views/apps_grid_view_delegate.h", | 121 "views/apps_grid_view_delegate.h", |
| 122 "views/apps_grid_view_folder_delegate.h", | 122 "views/apps_grid_view_folder_delegate.h", |
| 123 "views/contents_view.cc", | 123 "views/contents_view.cc", |
| 124 "views/contents_view.h", | 124 "views/contents_view.h", |
| 125 "views/custom_launcher_page_view.cc", | 125 "views/custom_launcher_page_view.cc", |
| 126 "views/custom_launcher_page_view.h", | 126 "views/custom_launcher_page_view.h", |
| 127 "views/expand_arrow_view.cc", | |
| 128 "views/expand_arrow_view.h", | |
| 129 "views/folder_background_view.cc", | 127 "views/folder_background_view.cc", |
| 130 "views/folder_background_view.h", | 128 "views/folder_background_view.h", |
| 131 "views/folder_header_view.cc", | 129 "views/folder_header_view.cc", |
| 132 "views/folder_header_view.h", | 130 "views/folder_header_view.h", |
| 133 "views/folder_header_view_delegate.h", | 131 "views/folder_header_view_delegate.h", |
| 134 "views/image_shadow_animator.cc", | 132 "views/image_shadow_animator.cc", |
| 135 "views/image_shadow_animator.h", | 133 "views/image_shadow_animator.h", |
| 136 "views/indicator_chip_view.cc", | 134 "views/indicator_chip_view.cc", |
| 137 "views/indicator_chip_view.h", | 135 "views/indicator_chip_view.h", |
| 138 "views/page_switcher.h", | 136 "views/page_switcher.h", |
| (...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 287 "views/test/apps_grid_view_test_api.cc", | 285 "views/test/apps_grid_view_test_api.cc", |
| 288 "views/test/apps_grid_view_test_api.h", | 286 "views/test/apps_grid_view_test_api.h", |
| 289 ] | 287 ] |
| 290 deps += [ | 288 deps += [ |
| 291 "//ui/accessibility", | 289 "//ui/accessibility", |
| 292 "//ui/views", | 290 "//ui/views", |
| 293 "//ui/views:test_support", | 291 "//ui/views:test_support", |
| 294 ] | 292 ] |
| 295 } | 293 } |
| 296 } | 294 } |
| OLD | NEW |