| OLD | NEW |
| 1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2009 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 'test_shell_windows_resource_files': [ | 8 'test_shell_windows_resource_files': [ |
| 9 'resources/test_shell.rc', | 9 'resources/test_shell.rc', |
| 10 'resources/pan_east.cur', | 10 'resources/pan_east.cur', |
| (...skipping 226 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 237 }, | 237 }, |
| 238 { | 238 { |
| 239 'target_name': 'test_shell', | 239 'target_name': 'test_shell', |
| 240 'type': 'executable', | 240 'type': 'executable', |
| 241 'mac_bundle': 1, | 241 'mac_bundle': 1, |
| 242 'msvs_guid': 'FA39524D-3067-4141-888D-28A86C66F2B9', | 242 'msvs_guid': 'FA39524D-3067-4141-888D-28A86C66F2B9', |
| 243 'dependencies': [ | 243 'dependencies': [ |
| 244 'test_shell_common', | 244 'test_shell_common', |
| 245 '../../../tools/imagediff/image_diff.gyp:image_diff', | 245 '../../../tools/imagediff/image_diff.gyp:image_diff', |
| 246 ], | 246 ], |
| 247 'defines': [ |
| 248 # Technically not a unit test but require functions available only to |
| 249 # unit tests. |
| 250 'UNIT_TEST' |
| 251 ], |
| 247 'sources': [ | 252 'sources': [ |
| 248 'test_shell_main.cc', | 253 'test_shell_main.cc', |
| 249 ], | 254 ], |
| 250 'mac_bundle_resources': [ | 255 'mac_bundle_resources': [ |
| 251 '../../data/test_shell/', | 256 '../../data/test_shell/', |
| 252 'mac/English.lproj/InfoPlist.strings', | 257 'mac/English.lproj/InfoPlist.strings', |
| 253 'mac/English.lproj/MainMenu.nib', | 258 'mac/English.lproj/MainMenu.nib', |
| 254 'mac/Info.plist', | 259 'mac/Info.plist', |
| 255 'mac/test_shell.icns', | 260 'mac/test_shell.icns', |
| 256 'resources/AHEM____.TTF', | 261 'resources/AHEM____.TTF', |
| (...skipping 433 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 690 ], | 695 ], |
| 691 }], | 696 }], |
| 692 ], | 697 ], |
| 693 } | 698 } |
| 694 | 699 |
| 695 # Local Variables: | 700 # Local Variables: |
| 696 # tab-width:2 | 701 # tab-width:2 |
| 697 # indent-tabs-mode:nil | 702 # indent-tabs-mode:nil |
| 698 # End: | 703 # End: |
| 699 # vim: set expandtab tabstop=2 shiftwidth=2: | 704 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |