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 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
71 | 71 |
72 deps = [ | 72 deps = [ |
73 "//base", | 73 "//base", |
74 "//base:i18n", | 74 "//base:i18n", |
75 "//base/third_party/dynamic_annotations", | 75 "//base/third_party/dynamic_annotations", |
76 "//components/keyed_service/core", | 76 "//components/keyed_service/core", |
77 "//skia", | 77 "//skia", |
78 "//sync", | 78 "//sync", |
79 "//third_party/icu", | 79 "//third_party/icu", |
80 "//ui/accessibility", | 80 "//ui/accessibility", |
81 "//ui/app_list/resources", | |
81 "//ui/base", | 82 "//ui/base", |
82 "//ui/base/ime", | 83 "//ui/base/ime", |
83 "//ui/compositor", | 84 "//ui/compositor", |
84 "//ui/events:events_base", | 85 "//ui/events:events_base", |
85 "//ui/gfx", | 86 "//ui/gfx", |
86 "//ui/gfx/geometry", | 87 "//ui/gfx/geometry", |
87 "//ui/resources", | 88 "//ui/resources", |
88 "//ui/strings", | 89 "//ui/strings", |
89 ] | 90 ] |
90 | 91 |
(...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
216 "test/app_list_test_view_delegate.h", | 217 "test/app_list_test_view_delegate.h", |
217 "test/test_search_result.cc", | 218 "test/test_search_result.cc", |
218 "test/test_search_result.h", | 219 "test/test_search_result.h", |
219 ] | 220 ] |
220 | 221 |
221 deps = [ | 222 deps = [ |
222 ":app_list", | 223 ":app_list", |
223 "//base", | 224 "//base", |
224 "//ui/gfx", | 225 "//ui/gfx", |
225 "//ui/gfx/geometry", | 226 "//ui/gfx/geometry", |
226 "//ui/resources", | |
227 ] | 227 ] |
228 } | 228 } |
229 | 229 |
230 if (is_linux && !is_chromeos) { | 230 if (is_linux && !is_chromeos) { |
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 = [ |
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
297 | 297 |
298 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 298 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
299 | 299 |
300 deps = [ | 300 deps = [ |
301 ":app_list", | 301 ":app_list", |
302 ":test_support", | 302 ":test_support", |
303 "//base", | 303 "//base", |
304 "//base/test:test_support", | 304 "//base/test:test_support", |
305 "//skia", | 305 "//skia", |
306 "//testing/gtest", | 306 "//testing/gtest", |
307 "//ui/app_list/resources", | |
Matt Giuca
2015/08/14 10:47:32
See comment in gyp file.
bshe
2015/08/17 18:20:38
Done.
| |
307 "//ui/base", | 308 "//ui/base", |
308 "//ui/compositor", | 309 "//ui/compositor", |
309 "//ui/events", | 310 "//ui/events", |
310 "//ui/events:test_support", | 311 "//ui/events:test_support", |
311 "//ui/gl", | 312 "//ui/gl", |
312 "//ui/resources", | 313 "//ui/resources", |
313 "//ui/resources:ui_test_pak", | 314 "//ui/resources:ui_test_pak", |
314 ] | 315 ] |
315 | 316 |
316 data_deps = [ "//third_party/mesa:osmesa" ] | 317 data_deps = [ "//third_party/mesa:osmesa" ] |
(...skipping 22 matching lines...) Expand all Loading... | |
339 "cocoa/app_list_view_controller_unittest.mm", | 340 "cocoa/app_list_view_controller_unittest.mm", |
340 "cocoa/app_list_window_controller_unittest.mm", | 341 "cocoa/app_list_window_controller_unittest.mm", |
341 "cocoa/apps_grid_controller_unittest.mm", | 342 "cocoa/apps_grid_controller_unittest.mm", |
342 "cocoa/apps_search_box_controller_unittest.mm", | 343 "cocoa/apps_search_box_controller_unittest.mm", |
343 "cocoa/apps_search_results_controller_unittest.mm", | 344 "cocoa/apps_search_results_controller_unittest.mm", |
344 "cocoa/test/apps_grid_controller_test_helper.h", | 345 "cocoa/test/apps_grid_controller_test_helper.h", |
345 "cocoa/test/apps_grid_controller_test_helper.mm", | 346 "cocoa/test/apps_grid_controller_test_helper.mm", |
346 ] | 347 ] |
347 } | 348 } |
348 } | 349 } |
OLD | NEW |