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 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
67 "speech_ui_model_observer.h", | 67 "speech_ui_model_observer.h", |
68 ] | 68 ] |
69 | 69 |
70 defines = [ "APP_LIST_IMPLEMENTATION" ] | 70 defines = [ "APP_LIST_IMPLEMENTATION" ] |
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 "//components/sync", |
77 "//skia", | 78 "//skia", |
78 "//sync", | |
79 "//third_party/icu", | 79 "//third_party/icu", |
80 "//ui/accessibility", | 80 "//ui/accessibility", |
81 "//ui/app_list/resources", | 81 "//ui/app_list/resources", |
82 "//ui/base", | 82 "//ui/base", |
83 "//ui/base/ime", | 83 "//ui/base/ime", |
84 "//ui/compositor", | 84 "//ui/compositor", |
85 "//ui/display", | 85 "//ui/display", |
86 "//ui/events", | 86 "//ui/events", |
87 "//ui/gfx", | 87 "//ui/gfx", |
88 "//ui/gfx/geometry", | 88 "//ui/gfx/geometry", |
(...skipping 197 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
286 "views/speech_view_unittest.cc", | 286 "views/speech_view_unittest.cc", |
287 "views/test/apps_grid_view_test_api.cc", | 287 "views/test/apps_grid_view_test_api.cc", |
288 "views/test/apps_grid_view_test_api.h", | 288 "views/test/apps_grid_view_test_api.h", |
289 ] | 289 ] |
290 deps += [ | 290 deps += [ |
291 "//ui/views", | 291 "//ui/views", |
292 "//ui/views:test_support", | 292 "//ui/views:test_support", |
293 ] | 293 ] |
294 } | 294 } |
295 } | 295 } |
OLD | NEW |