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 209 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
220 | 220 |
221 deps = [ | 221 deps = [ |
222 ":app_list", | 222 ":app_list", |
223 "//base", | 223 "//base", |
224 "//ui/gfx", | 224 "//ui/gfx", |
225 "//ui/gfx/geometry", | 225 "//ui/gfx/geometry", |
226 "//ui/resources", | 226 "//ui/resources", |
227 ] | 227 ] |
228 } | 228 } |
229 | 229 |
230 if (is_linux && !is_chromeos) { | 230 if (is_linux && !use_cros_fe) { |
231 # TODO(GYP): Figure out which of these work and are needed on other platforms. | 231 # TODO(GYP): Figure out which of these work and are needed on other platforms. |
232 if (toolkit_views) { | 232 if (toolkit_views) { |
233 executable("app_list_demo") { | 233 executable("app_list_demo") { |
234 testonly = true | 234 testonly = true |
235 | 235 |
236 sources = [ | 236 sources = [ |
237 "demo/app_list_demo_views.cc", | 237 "demo/app_list_demo_views.cc", |
238 ] | 238 ] |
239 | 239 |
240 deps = [ | 240 deps = [ |
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
339 "cocoa/app_list_view_controller_unittest.mm", | 339 "cocoa/app_list_view_controller_unittest.mm", |
340 "cocoa/app_list_window_controller_unittest.mm", | 340 "cocoa/app_list_window_controller_unittest.mm", |
341 "cocoa/apps_grid_controller_unittest.mm", | 341 "cocoa/apps_grid_controller_unittest.mm", |
342 "cocoa/apps_search_box_controller_unittest.mm", | 342 "cocoa/apps_search_box_controller_unittest.mm", |
343 "cocoa/apps_search_results_controller_unittest.mm", | 343 "cocoa/apps_search_results_controller_unittest.mm", |
344 "cocoa/test/apps_grid_controller_test_helper.h", | 344 "cocoa/test/apps_grid_controller_test_helper.h", |
345 "cocoa/test/apps_grid_controller_test_helper.mm", | 345 "cocoa/test/apps_grid_controller_test_helper.mm", |
346 ] | 346 ] |
347 } | 347 } |
348 } | 348 } |
OLD | NEW |