| 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 19 matching lines...) Expand all Loading... |
| 30 'app_list_item_model.cc', | 30 'app_list_item_model.cc', |
| 31 'app_list_item_model.h', | 31 'app_list_item_model.h', |
| 32 'app_list_item_model_observer.h', | 32 'app_list_item_model_observer.h', |
| 33 'app_list_menu.cc', | 33 'app_list_menu.cc', |
| 34 'app_list_menu.h', | 34 'app_list_menu.h', |
| 35 'app_list_model.cc', | 35 'app_list_model.cc', |
| 36 'app_list_model.h', | 36 'app_list_model.h', |
| 37 'app_list_model_observer.h', | 37 'app_list_model_observer.h', |
| 38 'app_list_view_delegate.h', | 38 'app_list_view_delegate.h', |
| 39 'apps_grid_view_delegate.h', | 39 'apps_grid_view_delegate.h', |
| 40 'cocoa/app_list_menu_cocoa.h', |
| 41 'cocoa/app_list_menu_cocoa.mm', |
| 40 'cocoa/app_list_pager_view.h', | 42 'cocoa/app_list_pager_view.h', |
| 41 'cocoa/app_list_pager_view.mm', | 43 'cocoa/app_list_pager_view.mm', |
| 42 'cocoa/app_list_view_controller.h', | 44 'cocoa/app_list_view_controller.h', |
| 43 'cocoa/app_list_view_controller.mm', | 45 'cocoa/app_list_view_controller.mm', |
| 44 'cocoa/app_list_window_controller.h', | 46 'cocoa/app_list_window_controller.h', |
| 45 'cocoa/app_list_window_controller.mm', | 47 'cocoa/app_list_window_controller.mm', |
| 46 'cocoa/apps_collection_view_drag_manager.h', | 48 'cocoa/apps_collection_view_drag_manager.h', |
| 47 'cocoa/apps_collection_view_drag_manager.mm', | 49 'cocoa/apps_collection_view_drag_manager.mm', |
| 48 'cocoa/apps_grid_controller.h', | 50 'cocoa/apps_grid_controller.h', |
| 49 'cocoa/apps_grid_controller.mm', | 51 'cocoa/apps_grid_controller.mm', |
| (...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 190 'sources/': [ | 192 'sources/': [ |
| 191 ['exclude', 'cocoa/'], | 193 ['exclude', 'cocoa/'], |
| 192 ], | 194 ], |
| 193 }], | 195 }], |
| 194 ], | 196 ], |
| 195 # Disable c4267 warnings until we fix size_t to int truncations. | 197 # Disable c4267 warnings until we fix size_t to int truncations. |
| 196 'msvs_disabled_warnings': [ 4267, ], | 198 'msvs_disabled_warnings': [ 4267, ], |
| 197 }, | 199 }, |
| 198 ], | 200 ], |
| 199 } | 201 } |
| OLD | NEW |