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 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
137 "views/search_box_view.cc", | 137 "views/search_box_view.cc", |
138 "views/search_box_view.h", | 138 "views/search_box_view.h", |
139 "views/search_box_view_delegate.h", | 139 "views/search_box_view_delegate.h", |
140 "views/search_result_container_view.cc", | 140 "views/search_result_container_view.cc", |
141 "views/search_result_container_view.h", | 141 "views/search_result_container_view.h", |
142 "views/search_result_actions_view.cc", | 142 "views/search_result_actions_view.cc", |
143 "views/search_result_actions_view.h", | 143 "views/search_result_actions_view.h", |
144 "views/search_result_list_view.cc", | 144 "views/search_result_list_view.cc", |
145 "views/search_result_list_view.h", | 145 "views/search_result_list_view.h", |
146 "views/search_result_list_view_delegate.h", | 146 "views/search_result_list_view_delegate.h", |
| 147 "views/search_result_page_view.cc", |
| 148 "views/search_result_page_view.h", |
147 "views/search_result_view.cc", | 149 "views/search_result_view.cc", |
148 "views/search_result_view.h", | 150 "views/search_result_view.h", |
149 "views/speech_view.cc", | 151 "views/speech_view.cc", |
150 "views/speech_view.h", | 152 "views/speech_view.h", |
151 "views/start_page_view.cc", | 153 "views/start_page_view.cc", |
152 "views/start_page_view.h", | 154 "views/start_page_view.h", |
153 "views/search_result_tile_item_view.cc", | 155 "views/search_result_tile_item_view.cc", |
154 "views/search_result_tile_item_view.h", | 156 "views/search_result_tile_item_view.h", |
155 "views/tile_item_view.cc", | 157 "views/tile_item_view.cc", |
156 "views/tile_item_view.h", | 158 "views/tile_item_view.h", |
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
268 "cocoa/app_list_view_controller_unittest.mm", | 270 "cocoa/app_list_view_controller_unittest.mm", |
269 "cocoa/app_list_window_controller_unittest.mm", | 271 "cocoa/app_list_window_controller_unittest.mm", |
270 "cocoa/apps_grid_controller_unittest.mm", | 272 "cocoa/apps_grid_controller_unittest.mm", |
271 "cocoa/apps_search_box_controller_unittest.mm", | 273 "cocoa/apps_search_box_controller_unittest.mm", |
272 "cocoa/apps_search_results_controller_unittest.mm", | 274 "cocoa/apps_search_results_controller_unittest.mm", |
273 "cocoa/test/apps_grid_controller_test_helper.h", | 275 "cocoa/test/apps_grid_controller_test_helper.h", |
274 "cocoa/test/apps_grid_controller_test_helper.mm", | 276 "cocoa/test/apps_grid_controller_test_helper.mm", |
275 ] | 277 ] |
276 } | 278 } |
277 } | 279 } |
OLD | NEW |