| 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 216 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 227 "pagination_model_unittest.cc", | 227 "pagination_model_unittest.cc", |
| 228 "search/history_data_store_unittest.cc", | 228 "search/history_data_store_unittest.cc", |
| 229 "search/mixer_unittest.cc", | 229 "search/mixer_unittest.cc", |
| 230 "search/term_break_iterator_unittest.cc", | 230 "search/term_break_iterator_unittest.cc", |
| 231 "search/tokenized_string_char_iterator_unittest.cc", | 231 "search/tokenized_string_char_iterator_unittest.cc", |
| 232 "search/tokenized_string_match_unittest.cc", | 232 "search/tokenized_string_match_unittest.cc", |
| 233 "search/tokenized_string_unittest.cc", | 233 "search/tokenized_string_unittest.cc", |
| 234 "test/run_all_unittests.cc", | 234 "test/run_all_unittests.cc", |
| 235 ] | 235 ] |
| 236 | 236 |
| 237 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
| 238 |
| 237 deps = [ | 239 deps = [ |
| 238 ":app_list", | 240 ":app_list", |
| 239 ":test_support", | 241 ":test_support", |
| 240 "//base", | 242 "//base", |
| 241 "//base/test:test_support", | 243 "//base/test:test_support", |
| 242 "//skia", | 244 "//skia", |
| 243 "//testing/gtest", | 245 "//testing/gtest", |
| 244 "//ui/base", | 246 "//ui/base", |
| 245 "//ui/compositor", | 247 "//ui/compositor", |
| 246 "//ui/events", | 248 "//ui/events", |
| (...skipping 28 matching lines...) Expand all Loading... |
| 275 "cocoa/app_list_window_controller_unittest.mm", | 277 "cocoa/app_list_window_controller_unittest.mm", |
| 276 "cocoa/apps_grid_controller_unittest.mm", | 278 "cocoa/apps_grid_controller_unittest.mm", |
| 277 "cocoa/apps_search_box_controller_unittest.mm", | 279 "cocoa/apps_search_box_controller_unittest.mm", |
| 278 "cocoa/apps_search_results_controller_unittest.mm", | 280 "cocoa/apps_search_results_controller_unittest.mm", |
| 279 "cocoa/test/apps_grid_controller_test_helper.h", | 281 "cocoa/test/apps_grid_controller_test_helper.h", |
| 280 "cocoa/test/apps_grid_controller_test_helper.mm", | 282 "cocoa/test/apps_grid_controller_test_helper.mm", |
| 281 ] | 283 ] |
| 282 } | 284 } |
| 283 } | 285 } |
| 284 } | 286 } |
| OLD | NEW |