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 162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
173 libs = [ "QuartzCore.framework" ] | 173 libs = [ "QuartzCore.framework" ] |
174 } | 174 } |
175 } | 175 } |
176 | 176 |
177 static_library("test_support") { | 177 static_library("test_support") { |
178 sources = [ | 178 sources = [ |
179 "test/app_list_test_model.cc", | 179 "test/app_list_test_model.cc", |
180 "test/app_list_test_model.h", | 180 "test/app_list_test_model.h", |
181 "test/app_list_test_view_delegate.cc", | 181 "test/app_list_test_view_delegate.cc", |
182 "test/app_list_test_view_delegate.h", | 182 "test/app_list_test_view_delegate.h", |
| 183 "test/test_search_result.cc", |
| 184 "test/test_search_result.h", |
183 ] | 185 ] |
184 | 186 |
185 deps = [ | 187 deps = [ |
186 ":app_list", | 188 ":app_list", |
187 "//base", | 189 "//base", |
188 "//ui/gfx", | 190 "//ui/gfx", |
189 "//ui/gfx/geometry", | 191 "//ui/gfx/geometry", |
190 "//ui/resources", | 192 "//ui/resources", |
191 ] | 193 ] |
192 } | 194 } |
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
241 "cocoa/app_list_view_controller_unittest.mm", | 243 "cocoa/app_list_view_controller_unittest.mm", |
242 "cocoa/app_list_window_controller_unittest.mm", | 244 "cocoa/app_list_window_controller_unittest.mm", |
243 "cocoa/apps_grid_controller_unittest.mm", | 245 "cocoa/apps_grid_controller_unittest.mm", |
244 "cocoa/apps_search_box_controller_unittest.mm", | 246 "cocoa/apps_search_box_controller_unittest.mm", |
245 "cocoa/apps_search_results_controller_unittest.mm", | 247 "cocoa/apps_search_results_controller_unittest.mm", |
246 "cocoa/test/apps_grid_controller_test_helper.h", | 248 "cocoa/test/apps_grid_controller_test_helper.h", |
247 "cocoa/test/apps_grid_controller_test_helper.mm", | 249 "cocoa/test/apps_grid_controller_test_helper.mm", |
248 ] | 250 ] |
249 } | 251 } |
250 } | 252 } |
OLD | NEW |