| 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 205 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 216 'cocoa/app_list_view_controller_unittest.mm', | 216 'cocoa/app_list_view_controller_unittest.mm', |
| 217 'cocoa/app_list_window_controller_unittest.mm', | 217 'cocoa/app_list_window_controller_unittest.mm', |
| 218 'cocoa/apps_grid_controller_unittest.mm', | 218 'cocoa/apps_grid_controller_unittest.mm', |
| 219 'cocoa/apps_search_box_controller_unittest.mm', | 219 'cocoa/apps_search_box_controller_unittest.mm', |
| 220 'cocoa/apps_search_results_controller_unittest.mm', | 220 'cocoa/apps_search_results_controller_unittest.mm', |
| 221 'cocoa/signin_view_controller_unittest.mm', | 221 'cocoa/signin_view_controller_unittest.mm', |
| 222 'cocoa/test/apps_grid_controller_test_helper.h', | 222 'cocoa/test/apps_grid_controller_test_helper.h', |
| 223 'cocoa/test/apps_grid_controller_test_helper.mm', | 223 'cocoa/test/apps_grid_controller_test_helper.mm', |
| 224 'test/run_all_unittests.cc', | 224 'test/run_all_unittests.cc', |
| 225 'views/app_list_main_view_unittest.cc', | 225 'views/app_list_main_view_unittest.cc', |
| 226 'views/app_list_view_unittest.cc', |
| 226 'views/apps_grid_view_unittest.cc', | 227 'views/apps_grid_view_unittest.cc', |
| 227 'views/folder_header_view_unittest.cc', | 228 'views/folder_header_view_unittest.cc', |
| 228 'views/search_box_view_unittest.cc', | 229 'views/search_box_view_unittest.cc', |
| 229 'views/search_result_list_view_unittest.cc', | 230 'views/search_result_list_view_unittest.cc', |
| 230 'views/test/apps_grid_view_test_api.cc', | 231 'views/test/apps_grid_view_test_api.cc', |
| 231 'views/test/apps_grid_view_test_api.h', | 232 'views/test/apps_grid_view_test_api.h', |
| 232 ], | 233 ], |
| 233 'conditions': [ | 234 'conditions': [ |
| 234 ['toolkit_views==1', { | 235 ['toolkit_views==1', { |
| 235 'dependencies': [ | 236 'dependencies': [ |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 273 'dependencies': [ | 274 'dependencies': [ |
| 274 '../../base/allocator/allocator.gyp:allocator', | 275 '../../base/allocator/allocator.gyp:allocator', |
| 275 ], | 276 ], |
| 276 }], | 277 }], |
| 277 ], | 278 ], |
| 278 # Disable c4267 warnings until we fix size_t to int truncations. | 279 # Disable c4267 warnings until we fix size_t to int truncations. |
| 279 'msvs_disabled_warnings': [ 4267, ], | 280 'msvs_disabled_warnings': [ 4267, ], |
| 280 }, | 281 }, |
| 281 ], | 282 ], |
| 282 } | 283 } |
| OLD | NEW |