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

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

Issue 701773002: App list: Added contents view custom animation framework. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed default animator reverse not being set. Oooops. Created 6 years, 1 month 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 | « no previous file | ui/app_list/app_list.gyp » ('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 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 103 matching lines...) Expand 10 before | Expand all | Expand 10 after
114 "views/app_list_view.h", 114 "views/app_list_view.h",
115 "views/app_list_view_observer.h", 115 "views/app_list_view_observer.h",
116 "views/apps_grid_view.cc", 116 "views/apps_grid_view.cc",
117 "views/apps_grid_view.h", 117 "views/apps_grid_view.h",
118 "views/apps_grid_view_delegate.h", 118 "views/apps_grid_view_delegate.h",
119 "views/apps_grid_view_folder_delegate.h", 119 "views/apps_grid_view_folder_delegate.h",
120 "views/cached_label.cc", 120 "views/cached_label.cc",
121 "views/cached_label.h", 121 "views/cached_label.h",
122 "views/contents_switcher_view.cc", 122 "views/contents_switcher_view.cc",
123 "views/contents_switcher_view.h", 123 "views/contents_switcher_view.h",
124 "views/contents_animator.cc",
125 "views/contents_animator.h",
124 "views/contents_view.cc", 126 "views/contents_view.cc",
125 "views/contents_view.h", 127 "views/contents_view.h",
126 "views/folder_background_view.cc", 128 "views/folder_background_view.cc",
127 "views/folder_background_view.h", 129 "views/folder_background_view.h",
128 "views/folder_header_view.cc", 130 "views/folder_header_view.cc",
129 "views/folder_header_view.h", 131 "views/folder_header_view.h",
130 "views/folder_header_view_delegate.h", 132 "views/folder_header_view_delegate.h",
131 "views/page_switcher.cc", 133 "views/page_switcher.cc",
132 "views/page_switcher.h", 134 "views/page_switcher.h",
133 "views/progress_bar_view.cc", 135 "views/progress_bar_view.cc",
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after
245 "//ui/gl", 247 "//ui/gl",
246 "//ui/resources", 248 "//ui/resources",
247 "//ui/resources:ui_test_pak", 249 "//ui/resources:ui_test_pak",
248 ] 250 ]
249 251
250 if (toolkit_views) { 252 if (toolkit_views) {
251 sources += [ 253 sources += [
252 "views/app_list_main_view_unittest.cc", 254 "views/app_list_main_view_unittest.cc",
253 "views/app_list_view_unittest.cc", 255 "views/app_list_view_unittest.cc",
254 "views/apps_grid_view_unittest.cc", 256 "views/apps_grid_view_unittest.cc",
257 "views/contents_view_unittest.cc",
255 "views/folder_header_view_unittest.cc", 258 "views/folder_header_view_unittest.cc",
256 "views/search_box_view_unittest.cc", 259 "views/search_box_view_unittest.cc",
257 "views/search_result_list_view_unittest.cc", 260 "views/search_result_list_view_unittest.cc",
258 "views/speech_view_unittest.cc", 261 "views/speech_view_unittest.cc",
259 "views/test/apps_grid_view_test_api.cc", 262 "views/test/apps_grid_view_test_api.cc",
260 "views/test/apps_grid_view_test_api.h", 263 "views/test/apps_grid_view_test_api.h",
261 ] 264 ]
262 deps += [ 265 deps += [
263 "//ui/views", 266 "//ui/views",
264 "//ui/views:test_support", 267 "//ui/views:test_support",
265 ] 268 ]
266 } 269 }
267 270
268 if (is_mac) { 271 if (is_mac) {
269 sources += [ 272 sources += [
270 "cocoa/app_list_view_controller_unittest.mm", 273 "cocoa/app_list_view_controller_unittest.mm",
271 "cocoa/app_list_window_controller_unittest.mm", 274 "cocoa/app_list_window_controller_unittest.mm",
272 "cocoa/apps_grid_controller_unittest.mm", 275 "cocoa/apps_grid_controller_unittest.mm",
273 "cocoa/apps_search_box_controller_unittest.mm", 276 "cocoa/apps_search_box_controller_unittest.mm",
274 "cocoa/apps_search_results_controller_unittest.mm", 277 "cocoa/apps_search_results_controller_unittest.mm",
275 "cocoa/test/apps_grid_controller_test_helper.h", 278 "cocoa/test/apps_grid_controller_test_helper.h",
276 "cocoa/test/apps_grid_controller_test_helper.mm", 279 "cocoa/test/apps_grid_controller_test_helper.mm",
277 ] 280 ]
278 } 281 }
279 } 282 }
OLDNEW
« no previous file with comments | « no previous file | ui/app_list/app_list.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698