| 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 242 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 253 "//ui/views", | 253 "//ui/views", |
| 254 "//ui/views_content_client", | 254 "//ui/views_content_client", |
| 255 "//ui/views/controls/webview", | 255 "//ui/views/controls/webview", |
| 256 ] | 256 ] |
| 257 if (is_win) { | 257 if (is_win) { |
| 258 configs -= [ "//build/config/win:console" ] | 258 configs -= [ "//build/config/win:console" ] |
| 259 configs += [ "//build/config/win:windowed" ] | 259 configs += [ "//build/config/win:windowed" ] |
| 260 | 260 |
| 261 deps += [ | 261 deps += [ |
| 262 "//sandbox", | 262 "//sandbox", |
| 263 "//content:content_startup_helper_win", | 263 "//content:sandbox_helper_win", |
| 264 ] | 264 ] |
| 265 } | 265 } |
| 266 } | 266 } |
| 267 } | 267 } |
| 268 } | 268 } |
| 269 | 269 |
| 270 # TODO(GYP): Delete this after we've converted everything to GN. | 270 # TODO(GYP): Delete this after we've converted everything to GN. |
| 271 # The _run targets exist only for compatibility w/ GYP. | 271 # The _run targets exist only for compatibility w/ GYP. |
| 272 group("app_list_unittests_run") { | 272 group("app_list_unittests_run") { |
| 273 testonly = true | 273 testonly = true |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 307 "//testing/gtest", | 307 "//testing/gtest", |
| 308 "//ui/base", | 308 "//ui/base", |
| 309 "//ui/compositor", | 309 "//ui/compositor", |
| 310 "//ui/events", | 310 "//ui/events", |
| 311 "//ui/events:test_support", | 311 "//ui/events:test_support", |
| 312 "//ui/gl", | 312 "//ui/gl", |
| 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 = [ "//third_party/mesa:osmesa" ] | 317 data_deps = [ |
| 318 "//third_party/mesa:osmesa", |
| 319 ] |
| 318 | 320 |
| 319 if (toolkit_views) { | 321 if (toolkit_views) { |
| 320 sources += [ | 322 sources += [ |
| 321 "views/app_list_main_view_unittest.cc", | 323 "views/app_list_main_view_unittest.cc", |
| 322 "views/app_list_view_unittest.cc", | 324 "views/app_list_view_unittest.cc", |
| 323 "views/apps_grid_view_unittest.cc", | 325 "views/apps_grid_view_unittest.cc", |
| 324 "views/folder_header_view_unittest.cc", | 326 "views/folder_header_view_unittest.cc", |
| 325 "views/image_shadow_animator_unittest.cc", | 327 "views/image_shadow_animator_unittest.cc", |
| 326 "views/search_box_view_unittest.cc", | 328 "views/search_box_view_unittest.cc", |
| 327 "views/search_result_list_view_unittest.cc", | 329 "views/search_result_list_view_unittest.cc", |
| (...skipping 13 matching lines...) Expand all Loading... |
| 341 "cocoa/app_list_view_controller_unittest.mm", | 343 "cocoa/app_list_view_controller_unittest.mm", |
| 342 "cocoa/app_list_window_controller_unittest.mm", | 344 "cocoa/app_list_window_controller_unittest.mm", |
| 343 "cocoa/apps_grid_controller_unittest.mm", | 345 "cocoa/apps_grid_controller_unittest.mm", |
| 344 "cocoa/apps_search_box_controller_unittest.mm", | 346 "cocoa/apps_search_box_controller_unittest.mm", |
| 345 "cocoa/apps_search_results_controller_unittest.mm", | 347 "cocoa/apps_search_results_controller_unittest.mm", |
| 346 "cocoa/test/apps_grid_controller_test_helper.h", | 348 "cocoa/test/apps_grid_controller_test_helper.h", |
| 347 "cocoa/test/apps_grid_controller_test_helper.mm", | 349 "cocoa/test/apps_grid_controller_test_helper.mm", |
| 348 ] | 350 ] |
| 349 } | 351 } |
| 350 } | 352 } |
| OLD | NEW |