| 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 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 123 "views/contents_view.h", | 123 "views/contents_view.h", |
| 124 "views/custom_launcher_page_view.cc", | 124 "views/custom_launcher_page_view.cc", |
| 125 "views/custom_launcher_page_view.h", | 125 "views/custom_launcher_page_view.h", |
| 126 "views/folder_background_view.cc", | 126 "views/folder_background_view.cc", |
| 127 "views/folder_background_view.h", | 127 "views/folder_background_view.h", |
| 128 "views/folder_header_view.cc", | 128 "views/folder_header_view.cc", |
| 129 "views/folder_header_view.h", | 129 "views/folder_header_view.h", |
| 130 "views/folder_header_view_delegate.h", | 130 "views/folder_header_view_delegate.h", |
| 131 "views/image_shadow_animator.cc", | 131 "views/image_shadow_animator.cc", |
| 132 "views/image_shadow_animator.h", | 132 "views/image_shadow_animator.h", |
| 133 "views/page_switcher.cc", | |
| 134 "views/page_switcher.h", | 133 "views/page_switcher.h", |
| 134 "views/page_switcher_horizontal.cc", |
| 135 "views/page_switcher_horizontal.h", |
| 136 "views/page_switcher_vertical.cc", |
| 137 "views/page_switcher_vertical.h", |
| 135 "views/pulsing_block_view.cc", | 138 "views/pulsing_block_view.cc", |
| 136 "views/pulsing_block_view.h", | 139 "views/pulsing_block_view.h", |
| 137 "views/search_box_view.cc", | 140 "views/search_box_view.cc", |
| 138 "views/search_box_view.h", | 141 "views/search_box_view.h", |
| 139 "views/search_box_view_delegate.h", | 142 "views/search_box_view_delegate.h", |
| 140 "views/search_result_actions_view.cc", | 143 "views/search_result_actions_view.cc", |
| 141 "views/search_result_actions_view.h", | 144 "views/search_result_actions_view.h", |
| 142 "views/search_result_actions_view_delegate.h", | 145 "views/search_result_actions_view_delegate.h", |
| 143 "views/search_result_answer_card_view.cc", | 146 "views/search_result_answer_card_view.cc", |
| 144 "views/search_result_answer_card_view.h", | 147 "views/search_result_answer_card_view.h", |
| (...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 274 "views/speech_view_unittest.cc", | 277 "views/speech_view_unittest.cc", |
| 275 "views/test/apps_grid_view_test_api.cc", | 278 "views/test/apps_grid_view_test_api.cc", |
| 276 "views/test/apps_grid_view_test_api.h", | 279 "views/test/apps_grid_view_test_api.h", |
| 277 ] | 280 ] |
| 278 deps += [ | 281 deps += [ |
| 279 "//ui/views", | 282 "//ui/views", |
| 280 "//ui/views:test_support", | 283 "//ui/views:test_support", |
| 281 ] | 284 ] |
| 282 } | 285 } |
| 283 } | 286 } |
| OLD | NEW |