| 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 27 matching lines...) Expand all Loading... |
| 38 'app_list_item_model_observer.h', | 38 'app_list_item_model_observer.h', |
| 39 'app_list_menu.cc', | 39 'app_list_menu.cc', |
| 40 'app_list_menu.h', | 40 'app_list_menu.h', |
| 41 'app_list_model.cc', | 41 'app_list_model.cc', |
| 42 'app_list_model.h', | 42 'app_list_model.h', |
| 43 'app_list_model_observer.h', | 43 'app_list_model_observer.h', |
| 44 'app_list_switches.cc', | 44 'app_list_switches.cc', |
| 45 'app_list_switches.h', | 45 'app_list_switches.h', |
| 46 'app_list_view_delegate.cc', | 46 'app_list_view_delegate.cc', |
| 47 'app_list_view_delegate.h', | 47 'app_list_view_delegate.h', |
| 48 'app_list_view_delegate_observer.h', |
| 48 'cocoa/app_list_pager_view.h', | 49 'cocoa/app_list_pager_view.h', |
| 49 'cocoa/app_list_pager_view.mm', | 50 'cocoa/app_list_pager_view.mm', |
| 50 'cocoa/app_list_view_controller.h', | 51 'cocoa/app_list_view_controller.h', |
| 51 'cocoa/app_list_view_controller.mm', | 52 'cocoa/app_list_view_controller.mm', |
| 52 'cocoa/app_list_window_controller.h', | 53 'cocoa/app_list_window_controller.h', |
| 53 'cocoa/app_list_window_controller.mm', | 54 'cocoa/app_list_window_controller.mm', |
| 54 'cocoa/apps_collection_view_drag_manager.h', | 55 'cocoa/apps_collection_view_drag_manager.h', |
| 55 'cocoa/apps_collection_view_drag_manager.mm', | 56 'cocoa/apps_collection_view_drag_manager.mm', |
| 56 'cocoa/apps_grid_controller.h', | 57 'cocoa/apps_grid_controller.h', |
| 57 'cocoa/apps_grid_controller.mm', | 58 'cocoa/apps_grid_controller.mm', |
| (...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 250 'dependencies': [ | 251 'dependencies': [ |
| 251 '../../base/allocator/allocator.gyp:allocator', | 252 '../../base/allocator/allocator.gyp:allocator', |
| 252 ], | 253 ], |
| 253 }], | 254 }], |
| 254 ], | 255 ], |
| 255 # Disable c4267 warnings until we fix size_t to int truncations. | 256 # Disable c4267 warnings until we fix size_t to int truncations. |
| 256 'msvs_disabled_warnings': [ 4267, ], | 257 'msvs_disabled_warnings': [ 4267, ], |
| 257 }, | 258 }, |
| 258 ], | 259 ], |
| 259 } | 260 } |
| OLD | NEW |