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

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

Issue 2588103004: Apply new WM shadows to app list. (Closed)
Patch Set: stop building app list on other platforms Created 3 years, 12 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
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) { 218 if (is_win) {
tapted 2016/12/21 22:39:58 This is_win bit can be removed too
Evan Stade 2016/12/29 17:23:12 Done.
222 configs -= [ "//build/config/win:console" ] 219 configs -= [ "//build/config/win:console" ]
223 configs += [ "//build/config/win:windowed" ] 220 configs += [ "//build/config/win:windowed" ]
224 221
225 deps += [ 222 deps += [
226 "//content:sandbox_helper_win", 223 "//content:sandbox_helper_win",
227 "//sandbox", 224 "//sandbox",
228 ] 225 ]
229 } 226 }
230 } 227 }
231 } 228 }
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
280 "views/speech_view_unittest.cc", 277 "views/speech_view_unittest.cc",
281 "views/test/apps_grid_view_test_api.cc", 278 "views/test/apps_grid_view_test_api.cc",
282 "views/test/apps_grid_view_test_api.h", 279 "views/test/apps_grid_view_test_api.h",
283 ] 280 ]
284 deps += [ 281 deps += [
285 "//ui/views", 282 "//ui/views",
286 "//ui/views:test_support", 283 "//ui/views:test_support",
287 ] 284 ]
288 } 285 }
289 } 286 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698