OLD | NEW |
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 24 matching lines...) Expand all Loading... |
35 'app_list_item_list.h', | 35 'app_list_item_list.h', |
36 'app_list_item_list_observer.h', | 36 'app_list_item_list_observer.h', |
37 'app_list_item_model.cc', | 37 'app_list_item_model.cc', |
38 'app_list_item_model.h', | 38 'app_list_item_model.h', |
39 'app_list_item_model_observer.h', | 39 'app_list_item_model_observer.h', |
40 'app_list_menu.cc', | 40 'app_list_menu.cc', |
41 'app_list_menu.h', | 41 'app_list_menu.h', |
42 'app_list_model.cc', | 42 'app_list_model.cc', |
43 'app_list_model.h', | 43 'app_list_model.h', |
44 'app_list_model_observer.h', | 44 'app_list_model_observer.h', |
| 45 'app_list_view_delegate.cc', |
45 'app_list_view_delegate.h', | 46 'app_list_view_delegate.h', |
46 'cocoa/app_list_pager_view.h', | 47 'cocoa/app_list_pager_view.h', |
47 'cocoa/app_list_pager_view.mm', | 48 'cocoa/app_list_pager_view.mm', |
48 'cocoa/app_list_view_controller.h', | 49 'cocoa/app_list_view_controller.h', |
49 'cocoa/app_list_view_controller.mm', | 50 'cocoa/app_list_view_controller.mm', |
50 'cocoa/app_list_window_controller.h', | 51 'cocoa/app_list_window_controller.h', |
51 'cocoa/app_list_window_controller.mm', | 52 'cocoa/app_list_window_controller.mm', |
52 'cocoa/apps_collection_view_drag_manager.h', | 53 'cocoa/apps_collection_view_drag_manager.h', |
53 'cocoa/apps_collection_view_drag_manager.mm', | 54 'cocoa/apps_collection_view_drag_manager.mm', |
54 'cocoa/apps_grid_controller.h', | 55 'cocoa/apps_grid_controller.h', |
(...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
246 'dependencies': [ | 247 'dependencies': [ |
247 '../../base/allocator/allocator.gyp:allocator', | 248 '../../base/allocator/allocator.gyp:allocator', |
248 ], | 249 ], |
249 }], | 250 }], |
250 ], | 251 ], |
251 # Disable c4267 warnings until we fix size_t to int truncations. | 252 # Disable c4267 warnings until we fix size_t to int truncations. |
252 'msvs_disabled_warnings': [ 4267, ], | 253 'msvs_disabled_warnings': [ 4267, ], |
253 }, | 254 }, |
254 ], | 255 ], |
255 } | 256 } |
OLD | NEW |