| 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 289 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 300 | 300 |
| 301 deps = [ | 301 deps = [ |
| 302 ":app_list", | 302 ":app_list", |
| 303 ":test_support", | 303 ":test_support", |
| 304 "//base", | 304 "//base", |
| 305 "//base/test:test_support", | 305 "//base/test:test_support", |
| 306 "//skia", | 306 "//skia", |
| 307 "//testing/gtest", | 307 "//testing/gtest", |
| 308 "//ui/base", | 308 "//ui/base", |
| 309 "//ui/compositor", | 309 "//ui/compositor", |
| 310 "//ui/events", | |
| 311 "//ui/events:test_support", | 310 "//ui/events:test_support", |
| 312 "//ui/gl", | 311 "//ui/gfx:test_support", |
| 312 "//ui/gl:test_support", |
| 313 "//ui/resources", | 313 "//ui/resources", |
| 314 "//ui/resources:ui_test_pak", | 314 "//ui/resources:ui_test_pak", |
| 315 ] | 315 ] |
| 316 | 316 |
| 317 data_deps = [ | 317 data_deps = [ |
| 318 "//third_party/mesa:osmesa", | 318 "//third_party/mesa:osmesa", |
| 319 ] | 319 ] |
| 320 | 320 |
| 321 if (toolkit_views) { | 321 if (toolkit_views) { |
| 322 sources += [ | 322 sources += [ |
| (...skipping 20 matching lines...) Expand all Loading... |
| 343 "cocoa/app_list_view_controller_unittest.mm", | 343 "cocoa/app_list_view_controller_unittest.mm", |
| 344 "cocoa/app_list_window_controller_unittest.mm", | 344 "cocoa/app_list_window_controller_unittest.mm", |
| 345 "cocoa/apps_grid_controller_unittest.mm", | 345 "cocoa/apps_grid_controller_unittest.mm", |
| 346 "cocoa/apps_search_box_controller_unittest.mm", | 346 "cocoa/apps_search_box_controller_unittest.mm", |
| 347 "cocoa/apps_search_results_controller_unittest.mm", | 347 "cocoa/apps_search_results_controller_unittest.mm", |
| 348 "cocoa/test/apps_grid_controller_test_helper.h", | 348 "cocoa/test/apps_grid_controller_test_helper.h", |
| 349 "cocoa/test/apps_grid_controller_test_helper.mm", | 349 "cocoa/test/apps_grid_controller_test_helper.mm", |
| 350 ] | 350 ] |
| 351 } | 351 } |
| 352 } | 352 } |
| OLD | NEW |