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 'test_shell_windows_resource_files': [ | 7 'test_shell_windows_resource_files': [ |
8 'resources/test_shell.rc', | 8 'resources/test_shell.rc', |
9 '../../glue/resources/pan_east.cur', | 9 '../../glue/resources/pan_east.cur', |
10 '../../glue/resources/pan_middle.cur', | 10 '../../glue/resources/pan_middle.cur', |
(...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
163 '-lcomctl32.lib', | 163 '-lcomctl32.lib', |
164 ], | 164 ], |
165 }, | 165 }, |
166 'include_dirs': [ | 166 'include_dirs': [ |
167 '<(DEPTH)/third_party/wtl/include', | 167 '<(DEPTH)/third_party/wtl/include', |
168 '.', | 168 '.', |
169 ], | 169 ], |
170 'dependencies': [ | 170 'dependencies': [ |
171 '<(DEPTH)/breakpad/breakpad.gyp:breakpad_handler', | 171 '<(DEPTH)/breakpad/breakpad.gyp:breakpad_handler', |
172 ], | 172 ], |
| 173 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 174 'msvs_disabled_warnings': [ 4267, ], |
173 }, { # else: OS!=win | 175 }, { # else: OS!=win |
174 'sources/': [ | 176 'sources/': [ |
175 ['exclude', '_webtheme(control|engine)\.(cc|h)$'], | 177 ['exclude', '_webtheme(control|engine)\.(cc|h)$'], |
176 ], | 178 ], |
177 'sources!': [ | 179 'sources!': [ |
178 'drop_delegate.cc', | 180 'drop_delegate.cc', |
179 ], | 181 ], |
180 }], | 182 }], |
181 ], | 183 ], |
182 }, | 184 }, |
(...skipping 262 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
445 '../webcore_unit_tests/BMPImageDecoder_unittest.cpp', | 447 '../webcore_unit_tests/BMPImageDecoder_unittest.cpp', |
446 '../webcore_unit_tests/ICOImageDecoder_unittest.cpp', | 448 '../webcore_unit_tests/ICOImageDecoder_unittest.cpp', |
447 '../webcore_unit_tests/XBMImageDecoder_unittest.cpp', | 449 '../webcore_unit_tests/XBMImageDecoder_unittest.cpp', |
448 'image_decoder_unittest.cc', | 450 'image_decoder_unittest.cc', |
449 'image_decoder_unittest.h', | 451 'image_decoder_unittest.h', |
450 ], | 452 ], |
451 'sources': [ | 453 'sources': [ |
452 ], | 454 ], |
453 }], | 455 }], |
454 ['OS=="win"', { | 456 ['OS=="win"', { |
455 'msvs_disabled_warnings': [ 4800 ], | 457 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 458 'msvs_disabled_warnings': [ 4800, 4267 ], |
456 }], | 459 }], |
457 ['os_posix == 1 and OS != "mac"', { | 460 ['os_posix == 1 and OS != "mac"', { |
458 'conditions': [ | 461 'conditions': [ |
459 ['linux_use_tcmalloc==1', { | 462 ['linux_use_tcmalloc==1', { |
460 'dependencies': [ | 463 'dependencies': [ |
461 '<(DEPTH)/base/allocator/allocator.gyp:allocator', | 464 '<(DEPTH)/base/allocator/allocator.gyp:allocator', |
462 ], | 465 ], |
463 }], | 466 }], |
464 ], | 467 ], |
465 }], | 468 }], |
(...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
635 'action_name': 'test_shell_resources', | 638 'action_name': 'test_shell_resources', |
636 'includes': [ '../../../build/grit_action.gypi' ], | 639 'includes': [ '../../../build/grit_action.gypi' ], |
637 }, | 640 }, |
638 ], | 641 ], |
639 'includes': [ '../../../build/grit_target.gypi' ], | 642 'includes': [ '../../../build/grit_target.gypi' ], |
640 }, | 643 }, |
641 ], | 644 ], |
642 }], | 645 }], |
643 ], | 646 ], |
644 } | 647 } |
OLD | NEW |