| 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 102 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 |