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 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
141 "views/search_box_view_delegate.h", | 141 "views/search_box_view_delegate.h", |
142 "views/search_result_container_view.cc", | 142 "views/search_result_container_view.cc", |
143 "views/search_result_container_view.h", | 143 "views/search_result_container_view.h", |
144 "views/search_result_actions_view.cc", | 144 "views/search_result_actions_view.cc", |
145 "views/search_result_actions_view.h", | 145 "views/search_result_actions_view.h", |
146 "views/search_result_list_view.cc", | 146 "views/search_result_list_view.cc", |
147 "views/search_result_list_view.h", | 147 "views/search_result_list_view.h", |
148 "views/search_result_list_view_delegate.h", | 148 "views/search_result_list_view_delegate.h", |
149 "views/search_result_page_view.cc", | 149 "views/search_result_page_view.cc", |
150 "views/search_result_page_view.h", | 150 "views/search_result_page_view.h", |
| 151 "views/search_result_tile_item_list_view.cc", |
| 152 "views/search_result_tile_item_list_view.h", |
| 153 "views/search_result_tile_item_view.cc", |
| 154 "views/search_result_tile_item_view.h", |
151 "views/search_result_view.cc", | 155 "views/search_result_view.cc", |
152 "views/search_result_view.h", | 156 "views/search_result_view.h", |
153 "views/speech_view.cc", | 157 "views/speech_view.cc", |
154 "views/speech_view.h", | 158 "views/speech_view.h", |
155 "views/start_page_view.cc", | 159 "views/start_page_view.cc", |
156 "views/start_page_view.h", | 160 "views/start_page_view.h", |
157 "views/search_result_tile_item_view.cc", | |
158 "views/search_result_tile_item_view.h", | |
159 "views/tile_item_view.cc", | 161 "views/tile_item_view.cc", |
160 "views/tile_item_view.h", | 162 "views/tile_item_view.h", |
161 "views/top_icon_animation_view.cc", | 163 "views/top_icon_animation_view.cc", |
162 "views/top_icon_animation_view.h", | 164 "views/top_icon_animation_view.h", |
163 ] | 165 ] |
164 deps += [ | 166 deps += [ |
165 "//ui/events", | 167 "//ui/events", |
166 "//ui/views", | 168 "//ui/views", |
167 ] | 169 ] |
168 } | 170 } |
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
273 "cocoa/app_list_view_controller_unittest.mm", | 275 "cocoa/app_list_view_controller_unittest.mm", |
274 "cocoa/app_list_window_controller_unittest.mm", | 276 "cocoa/app_list_window_controller_unittest.mm", |
275 "cocoa/apps_grid_controller_unittest.mm", | 277 "cocoa/apps_grid_controller_unittest.mm", |
276 "cocoa/apps_search_box_controller_unittest.mm", | 278 "cocoa/apps_search_box_controller_unittest.mm", |
277 "cocoa/apps_search_results_controller_unittest.mm", | 279 "cocoa/apps_search_results_controller_unittest.mm", |
278 "cocoa/test/apps_grid_controller_test_helper.h", | 280 "cocoa/test/apps_grid_controller_test_helper.h", |
279 "cocoa/test/apps_grid_controller_test_helper.mm", | 281 "cocoa/test/apps_grid_controller_test_helper.mm", |
280 ] | 282 ] |
281 } | 283 } |
282 } | 284 } |
OLD | NEW |