Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(459)

Side by Side Diff: ui/app_list/BUILD.gn

Issue 2588103004: Apply new WM shadows to app list. (Closed)
Patch Set: remove references on testing bots Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « testing/buildbot/chromium.win.json ('k') | ui/app_list/demo/app_list_demo_views.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
92 deps += [ 92 deps += [
93 "//ui/aura", 93 "//ui/aura",
94 "//ui/wm", 94 "//ui/wm",
95 ] 95 ]
96 } 96 }
97 97
98 if (toolkit_views) { 98 if (toolkit_views) {
99 sources += [ 99 sources += [
100 "views/all_apps_tile_item_view.cc", 100 "views/all_apps_tile_item_view.cc",
101 "views/all_apps_tile_item_view.h", 101 "views/all_apps_tile_item_view.h",
102 "views/app_list_background.cc",
103 "views/app_list_background.h",
104 "views/app_list_drag_and_drop_host.h", 102 "views/app_list_drag_and_drop_host.h",
105 "views/app_list_folder_view.cc", 103 "views/app_list_folder_view.cc",
106 "views/app_list_folder_view.h", 104 "views/app_list_folder_view.h",
107 "views/app_list_item_view.cc", 105 "views/app_list_item_view.cc",
108 "views/app_list_item_view.h", 106 "views/app_list_item_view.h",
109 "views/app_list_main_view.cc", 107 "views/app_list_main_view.cc",
110 "views/app_list_main_view.h", 108 "views/app_list_main_view.h",
111 "views/app_list_page.cc", 109 "views/app_list_page.cc",
112 "views/app_list_page.h", 110 "views/app_list_page.h",
113 "views/app_list_view.cc", 111 "views/app_list_view.cc",
114 "views/app_list_view.h", 112 "views/app_list_view.h",
115 "views/app_list_view_observer.h",
116 "views/apps_container_view.cc", 113 "views/apps_container_view.cc",
117 "views/apps_container_view.h", 114 "views/apps_container_view.h",
118 "views/apps_grid_view.cc", 115 "views/apps_grid_view.cc",
119 "views/apps_grid_view.h", 116 "views/apps_grid_view.h",
120 "views/apps_grid_view_delegate.h", 117 "views/apps_grid_view_delegate.h",
121 "views/apps_grid_view_folder_delegate.h", 118 "views/apps_grid_view_folder_delegate.h",
122 "views/contents_view.cc", 119 "views/contents_view.cc",
123 "views/contents_view.h", 120 "views/contents_view.h",
124 "views/custom_launcher_page_view.cc", 121 "views/custom_launcher_page_view.cc",
125 "views/custom_launcher_page_view.h", 122 "views/custom_launcher_page_view.h",
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
211 "//skia", 208 "//skia",
212 "//ui/base", 209 "//ui/base",
213 "//ui/events", 210 "//ui/events",
214 "//ui/resources", 211 "//ui/resources",
215 "//ui/resources:ui_test_pak", 212 "//ui/resources:ui_test_pak",
216 "//ui/views", 213 "//ui/views",
217 "//ui/views/controls/webview", 214 "//ui/views/controls/webview",
218 "//ui/views_content_client", 215 "//ui/views_content_client",
219 "//url", 216 "//url",
220 ] 217 ]
221 if (is_win) {
222 configs -= [ "//build/config/win:console" ]
223 configs += [ "//build/config/win:windowed" ]
224
225 deps += [
226 "//content:sandbox_helper_win",
227 "//sandbox",
228 ]
229 }
230 } 218 }
231 } 219 }
232 220
233 test("app_list_unittests") { 221 test("app_list_unittests") {
234 sources = [ 222 sources = [
235 "app_list_item_list_unittest.cc", 223 "app_list_item_list_unittest.cc",
236 "app_list_model_unittest.cc", 224 "app_list_model_unittest.cc",
237 "folder_image_unittest.cc", 225 "folder_image_unittest.cc",
238 "pagination_model_unittest.cc", 226 "pagination_model_unittest.cc",
239 "search/history_data_store_unittest.cc", 227 "search/history_data_store_unittest.cc",
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
280 "views/speech_view_unittest.cc", 268 "views/speech_view_unittest.cc",
281 "views/test/apps_grid_view_test_api.cc", 269 "views/test/apps_grid_view_test_api.cc",
282 "views/test/apps_grid_view_test_api.h", 270 "views/test/apps_grid_view_test_api.h",
283 ] 271 ]
284 deps += [ 272 deps += [
285 "//ui/views", 273 "//ui/views",
286 "//ui/views:test_support", 274 "//ui/views:test_support",
287 ] 275 ]
288 } 276 }
289 } 277 }
OLDNEW
« no previous file with comments | « testing/buildbot/chromium.win.json ('k') | ui/app_list/demo/app_list_demo_views.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698