| 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 249 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 260 | 260 |
| 261 deps += [ | 261 deps += [ |
| 262 "//content:sandbox_helper_win", | 262 "//content:sandbox_helper_win", |
| 263 "//sandbox", | 263 "//sandbox", |
| 264 ] | 264 ] |
| 265 } | 265 } |
| 266 } | 266 } |
| 267 } | 267 } |
| 268 } | 268 } |
| 269 | 269 |
| 270 # TODO(GYP): Delete this after we've converted everything to GN. | |
| 271 # The _run targets exist only for compatibility w/ GYP. | |
| 272 group("app_list_unittests_run") { | |
| 273 testonly = true | |
| 274 deps = [ | |
| 275 ":app_list_unittests", | |
| 276 ] | |
| 277 } | |
| 278 | |
| 279 test("app_list_unittests") { | 270 test("app_list_unittests") { |
| 280 sources = [ | 271 sources = [ |
| 281 "app_list_item_list_unittest.cc", | 272 "app_list_item_list_unittest.cc", |
| 282 "app_list_model_unittest.cc", | 273 "app_list_model_unittest.cc", |
| 283 "folder_image_unittest.cc", | 274 "folder_image_unittest.cc", |
| 284 "pagination_model_unittest.cc", | 275 "pagination_model_unittest.cc", |
| 285 "search/history_data_store_unittest.cc", | 276 "search/history_data_store_unittest.cc", |
| 286 "search/mixer_unittest.cc", | 277 "search/mixer_unittest.cc", |
| 287 "search/term_break_iterator_unittest.cc", | 278 "search/term_break_iterator_unittest.cc", |
| 288 "search/tokenized_string_char_iterator_unittest.cc", | 279 "search/tokenized_string_char_iterator_unittest.cc", |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 343 "cocoa/app_list_view_controller_unittest.mm", | 334 "cocoa/app_list_view_controller_unittest.mm", |
| 344 "cocoa/app_list_window_controller_unittest.mm", | 335 "cocoa/app_list_window_controller_unittest.mm", |
| 345 "cocoa/apps_grid_controller_unittest.mm", | 336 "cocoa/apps_grid_controller_unittest.mm", |
| 346 "cocoa/apps_search_box_controller_unittest.mm", | 337 "cocoa/apps_search_box_controller_unittest.mm", |
| 347 "cocoa/apps_search_results_controller_unittest.mm", | 338 "cocoa/apps_search_results_controller_unittest.mm", |
| 348 "cocoa/test/apps_grid_controller_test_helper.h", | 339 "cocoa/test/apps_grid_controller_test_helper.h", |
| 349 "cocoa/test/apps_grid_controller_test_helper.mm", | 340 "cocoa/test/apps_grid_controller_test_helper.mm", |
| 350 ] | 341 ] |
| 351 } | 342 } |
| 352 } | 343 } |
| OLD | NEW |