| 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 | 6 |
| 7 component("app_list") { | 7 component("app_list") { |
| 8 sources = [ | 8 sources = [ |
| 9 "app_list_constants.cc", | 9 "app_list_constants.cc", |
| 10 "app_list_constants.h", | 10 "app_list_constants.h", |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 51 "speech_ui_model_observer.h", | 51 "speech_ui_model_observer.h", |
| 52 ] | 52 ] |
| 53 | 53 |
| 54 defines = [ "APP_LIST_IMPLEMENTATION" ] | 54 defines = [ "APP_LIST_IMPLEMENTATION" ] |
| 55 | 55 |
| 56 deps = [ | 56 deps = [ |
| 57 "//base", | 57 "//base", |
| 58 "//base:i18n", | 58 "//base:i18n", |
| 59 "//base/third_party/dynamic_annotations", | 59 "//base/third_party/dynamic_annotations", |
| 60 "//skia", | 60 "//skia", |
| 61 "//sync", |
| 61 "//third_party/icu", | 62 "//third_party/icu", |
| 62 "//ui/accessibility", | 63 "//ui/accessibility", |
| 63 "//ui/base", | 64 "//ui/base", |
| 64 "//ui/compositor", | 65 "//ui/compositor", |
| 65 "//ui/events:events_base", | 66 "//ui/events:events_base", |
| 66 "//ui/gfx", | 67 "//ui/gfx", |
| 67 "//ui/gfx/geometry", | 68 "//ui/gfx/geometry", |
| 68 "//ui/resources", | 69 "//ui/resources", |
| 69 "//ui/strings", | 70 "//ui/strings", |
| 70 ] | 71 ] |
| (...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 240 "cocoa/app_list_view_controller_unittest.mm", | 241 "cocoa/app_list_view_controller_unittest.mm", |
| 241 "cocoa/app_list_window_controller_unittest.mm", | 242 "cocoa/app_list_window_controller_unittest.mm", |
| 242 "cocoa/apps_grid_controller_unittest.mm", | 243 "cocoa/apps_grid_controller_unittest.mm", |
| 243 "cocoa/apps_search_box_controller_unittest.mm", | 244 "cocoa/apps_search_box_controller_unittest.mm", |
| 244 "cocoa/apps_search_results_controller_unittest.mm", | 245 "cocoa/apps_search_results_controller_unittest.mm", |
| 245 "cocoa/test/apps_grid_controller_test_helper.h", | 246 "cocoa/test/apps_grid_controller_test_helper.h", |
| 246 "cocoa/test/apps_grid_controller_test_helper.mm", | 247 "cocoa/test/apps_grid_controller_test_helper.mm", |
| 247 ] | 248 ] |
| 248 } | 249 } |
| 249 } | 250 } |
| OLD | NEW |