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

Side by Side Diff: ui/app_list/app_list.gyp

Issue 27777002: Implement app list folder management page UI. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix nits. Created 7 years, 2 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 | Annotate | Revision Log
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 { 5 {
6 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 'targets': [ 9 'targets': [
10 { 10 {
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
68 'pagination_model.cc', 68 'pagination_model.cc',
69 'pagination_model.h', 69 'pagination_model.h',
70 'pagination_model_observer.h', 70 'pagination_model_observer.h',
71 'search_box_model.cc', 71 'search_box_model.cc',
72 'search_box_model.h', 72 'search_box_model.h',
73 'search_box_model_observer.h', 73 'search_box_model_observer.h',
74 'search_result.cc', 74 'search_result.cc',
75 'search_result.h', 75 'search_result.h',
76 'signin_delegate.cc', 76 'signin_delegate.cc',
77 'signin_delegate.h', 77 'signin_delegate.h',
78 'views/apps_container_view.cc',
79 'views/apps_container_view.h',
78 'views/app_list_background.cc', 80 'views/app_list_background.cc',
79 'views/app_list_background.h', 81 'views/app_list_background.h',
80 'views/app_list_drag_and_drop_host.h', 82 'views/app_list_drag_and_drop_host.h',
83 'views/app_list_folder_view.cc',
84 'views/app_list_folder_view.h',
81 'views/app_list_item_view.cc', 85 'views/app_list_item_view.cc',
82 'views/app_list_item_view.h', 86 'views/app_list_item_view.h',
83 'views/app_list_main_view.cc', 87 'views/app_list_main_view.cc',
84 'views/app_list_main_view.h', 88 'views/app_list_main_view.h',
85 'views/app_list_menu_views.cc', 89 'views/app_list_menu_views.cc',
86 'views/app_list_menu_views.h', 90 'views/app_list_menu_views.h',
87 'views/app_list_view.cc', 91 'views/app_list_view.cc',
88 'views/app_list_view.h', 92 'views/app_list_view.h',
89 'views/apps_grid_view.cc', 93 'views/apps_grid_view.cc',
90 'views/apps_grid_view.h', 94 'views/apps_grid_view.h',
91 'views/apps_grid_view_delegate.h', 95 'views/apps_grid_view_delegate.h',
92 'views/cached_label.cc', 96 'views/cached_label.cc',
93 'views/cached_label.h', 97 'views/cached_label.h',
94 'views/contents_view.cc', 98 'views/contents_view.cc',
95 'views/contents_view.h', 99 'views/contents_view.h',
100 'views/folder_header_view.cc',
101 'views/folder_header_view.h',
102 'views/folder_header_view_delegate.h',
96 'views/page_switcher.cc', 103 'views/page_switcher.cc',
97 'views/page_switcher.h', 104 'views/page_switcher.h',
98 'views/progress_bar_view.cc', 105 'views/progress_bar_view.cc',
99 'views/progress_bar_view.h', 106 'views/progress_bar_view.h',
100 'views/pulsing_block_view.cc', 107 'views/pulsing_block_view.cc',
101 'views/pulsing_block_view.h', 108 'views/pulsing_block_view.h',
102 'views/search_box_view.cc', 109 'views/search_box_view.cc',
103 'views/search_box_view.h', 110 'views/search_box_view.h',
104 'views/search_box_view_delegate.h', 111 'views/search_box_view_delegate.h',
105 'views/search_result_actions_view.cc', 112 'views/search_result_actions_view.cc',
(...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after
220 '../../webkit/glue/webkit_glue.gyp:glue', 227 '../../webkit/glue/webkit_glue.gyp:glue',
221 '../../webkit/glue/webkit_glue.gyp:glue_child', 228 '../../webkit/glue/webkit_glue.gyp:glue_child',
222 ], 229 ],
223 }], 230 }],
224 ], 231 ],
225 # Disable c4267 warnings until we fix size_t to int truncations. 232 # Disable c4267 warnings until we fix size_t to int truncations.
226 'msvs_disabled_warnings': [ 4267, ], 233 'msvs_disabled_warnings': [ 4267, ],
227 }, 234 },
228 ], 235 ],
229 } 236 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698