| 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 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 73 'pagination_model.cc', | 73 'pagination_model.cc', |
| 74 'pagination_model.h', | 74 'pagination_model.h', |
| 75 'pagination_model_observer.h', | 75 'pagination_model_observer.h', |
| 76 'search_box_model.cc', | 76 'search_box_model.cc', |
| 77 'search_box_model.h', | 77 'search_box_model.h', |
| 78 'search_box_model_observer.h', | 78 'search_box_model_observer.h', |
| 79 'search_result.cc', | 79 'search_result.cc', |
| 80 'search_result.h', | 80 'search_result.h', |
| 81 'signin_delegate.cc', | 81 'signin_delegate.cc', |
| 82 'signin_delegate.h', | 82 'signin_delegate.h', |
| 83 'speech_ui_model.cc', |
| 84 'speech_ui_model.h', |
| 83 'views/apps_container_view.cc', | 85 'views/apps_container_view.cc', |
| 84 'views/apps_container_view.h', | 86 'views/apps_container_view.h', |
| 85 'views/app_list_background.cc', | 87 'views/app_list_background.cc', |
| 86 'views/app_list_background.h', | 88 'views/app_list_background.h', |
| 87 'views/app_list_drag_and_drop_host.h', | 89 'views/app_list_drag_and_drop_host.h', |
| 88 'views/app_list_folder_view.cc', | 90 'views/app_list_folder_view.cc', |
| 89 'views/app_list_folder_view.h', | 91 'views/app_list_folder_view.h', |
| 90 'views/app_list_item_view.cc', | 92 'views/app_list_item_view.cc', |
| 91 'views/app_list_item_view.h', | 93 'views/app_list_item_view.h', |
| 92 'views/app_list_main_view.cc', | 94 'views/app_list_main_view.cc', |
| (...skipping 24 matching lines...) Expand all Loading... |
| 117 'views/search_result_actions_view.cc', | 119 'views/search_result_actions_view.cc', |
| 118 'views/search_result_actions_view.h', | 120 'views/search_result_actions_view.h', |
| 119 'views/search_result_list_view.cc', | 121 'views/search_result_list_view.cc', |
| 120 'views/search_result_list_view.h', | 122 'views/search_result_list_view.h', |
| 121 'views/search_result_list_view_delegate.h', | 123 'views/search_result_list_view_delegate.h', |
| 122 'views/search_result_view.cc', | 124 'views/search_result_view.cc', |
| 123 'views/search_result_view.h', | 125 'views/search_result_view.h', |
| 124 'views/search_result_view_delegate.h', | 126 'views/search_result_view_delegate.h', |
| 125 'views/signin_view.cc', | 127 'views/signin_view.cc', |
| 126 'views/signin_view.h', | 128 'views/signin_view.h', |
| 129 'views/speech_view.cc', |
| 130 'views/speech_view.h', |
| 127 ], | 131 ], |
| 128 'conditions': [ | 132 'conditions': [ |
| 129 ['use_aura==1', { | 133 ['use_aura==1', { |
| 130 'dependencies': [ | 134 'dependencies': [ |
| 131 '../aura/aura.gyp:aura', | 135 '../aura/aura.gyp:aura', |
| 132 ], | 136 ], |
| 133 }], | 137 }], |
| 134 ['toolkit_views==1', { | 138 ['toolkit_views==1', { |
| 135 'dependencies': [ | 139 'dependencies': [ |
| 136 '../../content/content.gyp:content', | 140 '../../content/content.gyp:content', |
| (...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 261 'dependencies': [ | 265 'dependencies': [ |
| 262 '../../base/allocator/allocator.gyp:allocator', | 266 '../../base/allocator/allocator.gyp:allocator', |
| 263 ], | 267 ], |
| 264 }], | 268 }], |
| 265 ], | 269 ], |
| 266 # Disable c4267 warnings until we fix size_t to int truncations. | 270 # Disable c4267 warnings until we fix size_t to int truncations. |
| 267 'msvs_disabled_warnings': [ 4267, ], | 271 'msvs_disabled_warnings': [ 4267, ], |
| 268 }, | 272 }, |
| 269 ], | 273 ], |
| 270 } | 274 } |
| OLD | NEW |