| 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 165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 176 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 176 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 177 'msvs_disabled_warnings': [ 4267, ], | 177 'msvs_disabled_warnings': [ 4267, ], |
| 178 }, | 178 }, |
| 179 { | 179 { |
| 180 'target_name': 'app_list_test_support', | 180 'target_name': 'app_list_test_support', |
| 181 'type': 'static_library', | 181 'type': 'static_library', |
| 182 'dependencies': [ | 182 'dependencies': [ |
| 183 '../../base/base.gyp:base', | 183 '../../base/base.gyp:base', |
| 184 '../gfx/gfx.gyp:gfx', | 184 '../gfx/gfx.gyp:gfx', |
| 185 '../gfx/gfx.gyp:gfx_geometry', | 185 '../gfx/gfx.gyp:gfx_geometry', |
| 186 '../resources/ui_resources.gyp:ui_resources', |
| 186 'app_list', | 187 'app_list', |
| 187 ], | 188 ], |
| 188 'sources': [ | 189 'sources': [ |
| 189 'test/app_list_test_model.cc', | 190 'test/app_list_test_model.cc', |
| 190 'test/app_list_test_model.h', | 191 'test/app_list_test_model.h', |
| 191 'test/app_list_test_view_delegate.cc', | 192 'test/app_list_test_view_delegate.cc', |
| 192 'test/app_list_test_view_delegate.h', | 193 'test/app_list_test_view_delegate.h', |
| 193 ], | 194 ], |
| 194 }, | 195 }, |
| 195 { | 196 { |
| (...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 272 'dependencies': [ | 273 'dependencies': [ |
| 273 '../../base/allocator/allocator.gyp:allocator', | 274 '../../base/allocator/allocator.gyp:allocator', |
| 274 ], | 275 ], |
| 275 }], | 276 }], |
| 276 ], | 277 ], |
| 277 # Disable c4267 warnings until we fix size_t to int truncations. | 278 # Disable c4267 warnings until we fix size_t to int truncations. |
| 278 'msvs_disabled_warnings': [ 4267, ], | 279 'msvs_disabled_warnings': [ 4267, ], |
| 279 }, | 280 }, |
| 280 ], | 281 ], |
| 281 } | 282 } |
| OLD | NEW |